Fritzing diagram: docs/breadboard/motor-l298-breakout.fzz
Run this example from the command line with:
node eg/motor-l298-breakout.js
const {Board, Motor} = require("johnny-five");
const board = new Board();
board.on("ready", () => {
const motor = new Motor({
pins: {
pwm: 8,
dir: 9
}
});
board.repl.inject({
motor
});
motor.on("start", () => {
console.log(`start: ${Date.now()}`);
});
motor.on("stop", () => {
console.log(`automated stop on timer: ${Date.now()}`);
});
motor.on("forward", () => {
console.log(`forward: ${Date.now()}`);
// demonstrate switching to reverse after 5 seconds
board.wait(5000, () => motor.reverse(50));
});
motor.on("reverse", () => {
console.log(`reverse: ${Date.now()}`);
// demonstrate stopping after 5 seconds
board.wait(5000, motor.stop);
});
// set the motor going forward full speed
motor.forward(255);
});
Copyright (c) 2012-2014 Rick Waldron waldron.rick@gmail.com Licensed under the MIT license. Copyright (c) 2015-2023 The Johnny-Five Contributors Licensed under the MIT license.