johnny-five
Version:
The JavaScript Arduino Programming Framework.
37 lines (28 loc) • 947 B
JavaScript
var five = require("../lib/johnny-five.js"),
board, motion;
board = new five.Board();
board.on("ready", function() {
// Create a new `motion` hardware instance.
motion = new five.IR.Motion(7);
// Inject the `motion` hardware into
// the Repl instance's context;
// allows direct command line access
this.repl.inject({
motion: motion
});
// Pir Event API
// "calibrated" occurs once, at the beginning of a session,
motion.on("calibrated", function(err, ts) {
console.log("calibrated", ts);
});
// "motionstart" events are fired when the "calibrated"
// proximal area is disrupted, generally by some form of movement
motion.on("motionstart", function(err, ts) {
console.log("motionstart", ts);
});
// "motionstart" events are fired following a "motionstart event
// when no movement has occurred in X ms
motion.on("motionend", function(err, ts) {
console.log("motionend", ts);
});
});