Run this example from the command line with:
node eg/tinkerkit-rotary.js
var five = require("johnny-five");
var board = new five.Board();
board.on("ready", function() {
var servo = new five.Servo("O0");
new five.Sensor("I1").scale(0, 180).on("change", function() {
servo.to(this.value);
});
});
Illustrations / Photos
TinkerKit Rotary Potentiometer
Learn More