joule-io
Version:
Intel Joule, Intel Edison & Intel Galileo IO Plugin for Johnny-Five JavaScript Robotics
22 lines (15 loc) • 356 B
Markdown
Joule-IO is an alias module for using Intel's Joule with Johnny-Five. It's an alias because it points directly to Galileo-IO.
```js
var five = require("johnny-five");
var Joule = require("joule-io");
var board = new five.Board({
io: new Joule()
});
board.on("ready", function() {
// ...
});
```
See LICENSE file.