Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 884 Bytes

tinkerkit-rotary.md

File metadata and controls

41 lines (28 loc) · 884 Bytes

TinkerKit - Rotary Potentiometer

Run with:

node eg/tinkerkit-rotary.js
var five = require("johnny-five");

new five.Board().on("ready", function() {
  var servo = new five.Servo("O0");

  new five.Sensor("I1").scale(0, 180).on("change", function() {
    servo.to(this.value);
  });
});

Breadboard/Illustration

docs/breadboard/tinkerkit-rotary.png

License

Copyright (c) 2012, 2013, 2014 Rick Waldron waldron.rick@gmail.com Licensed under the MIT license. Copyright (c) 2014, 2015 The Johnny-Five Contributors Licensed under the MIT license.