johnny-five
Version:
The JavaScript Robotics and Hardware Programming Framework. Use with: Arduino (all models), Electric Imp, Beagle Bone, Intel Galileo & Edison, Linino One, Pinoccio, pcDuino3, Raspberry Pi, Particle/Spark Core & Photon, Tessel 2, TI Launchpad and more!
28 lines (23 loc) • 779 B
JavaScript
var five = require("../lib/johnny-five");
var board = new five.Board();
board.on("ready", function() {
// Plug the Joystick module into the
// Grove Shield's A0 jack. Use
// the Joystick class to control.
var joystick = new five.Joystick([ "A0", "A1" ]);
// Observe change events from the Joystick!
joystick.on("change", function() {
console.log("Joystick");
console.log(" x : ", this.x);
console.log(" y : ", this.y);
console.log("--------------------------------------");
});
});
// @markdown
// For this program, you'll need:
//
// 
//
// 
//
// @markdown