Run this example from the command line with:
node eg/tinkerkit-touch.js
var five = require("johnny-five");
var board = new five.Board();
board.on("ready", function() {
var touch = new five.Button({
controller: "TINKERKIT",
pin: "I0",
});
["down", "up", "hold"].forEach(function(type) {
touch.on(type, function() {
console.log(type);
});
});
});
Illustrations / Photos
TinkerKit Touch
Learn More