UNPKG

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, Raspberry Pi, Spark Core, TI Launchpad and more!

40 lines (34 loc) 919 B
var argv = require("minimist")(process.argv.slice(2), { default: { show: 1 } }); var five = require("../lib/johnny-five"); var board = new five.Board(); board.on("ready", function() { // MPR121 3x4 Capacitive Touch Pad var keypad; if (argv.show === 1) { keypad = new five.Keypad({ controller: "MPR121" }); } if (argv.show === 2) { keypad = new five.Keypad({ controller: "MPR121", keys: [ ["!", "@", "#"], ["$", "%", "^"], ["&", "-", "+"], ["_", "=", ":"] ] }); } if (argv.show === 3) { keypad = new five.Keypad({ controller: "MPR121", keys: ["!", "@", "#", "$", "%", "^", "&", "-", "+", "_", "=", ":"] }); } ["change", "press", "hold", "release"].forEach(function(eventType) { keypad.on(eventType, function(data) { console.log("Event: %s, Target: %s", eventType, data.which); }); }); });