johnny-five
Version:
The JavaScript Arduino Programming Framework.
66 lines (40 loc) • 1.3 kB
Markdown
with:
```bash
node eg/continuous.js
```
```javascript
var five = require("johnny-five"),
board, servo;
board = new five.Board();
board.on("ready", function() {
// Create a new `servo` hardware instance.
servo = new five.Servo({
pin: 9,
// `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
// move( speed )
// Set the speed at which the continuous rotation
// servo will rotate at.
servo.move(90);
});
```

[ ](breadboard/continuous.fzz)
All contributions must adhere to the [Idiomatic.js Style Guide](https://github.com/rwldrn/idiomatic.js),
by maintaining the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using [grunt](https://github.com/cowboy/grunt).
Copyright (c) 2012 Rick Waldron <waldron.rick@gmail.com>
Licensed under the MIT license.
Run