johnny-five
Version:
The JavaScript Arduino Programming Framework.
37 lines (29 loc) • 841 B
JavaScript
var five = require("../lib/johnny-five.js"),
board, servo;
board = new five.Board();
board.on("ready", function() {
// Create a new `servo` hardware instance.
servo = new five.Servo({
pin: 10,
// `type` defaults to standard servo.
// For continuous rotation servos, override the default
// by setting the `type` here
type: "continuous"
});
// Inject the `servo` hardware into
// the Repl instance's context;
// allows direct command line access
board.repl.inject({
servo: servo
});
// Continuous Rotation Servo API
// cw( speed )
// clockWise( speed)
// ccw( speed )
// counterClockwise( speed )
//
// Set the speed at which the continuous rotation
// servo will rotate at, either clockwise or counter
// clockwise, respectively
servo.cw(0.5); // half speed clockwise
});