Skip to content

Latest commit

 

History

History
64 lines (30 loc) · 922 Bytes

sensor-slider.md

File metadata and controls

64 lines (30 loc) · 922 Bytes

Sensor - Slide potentiometer

Breadboard for "Sensor - Slide potentiometer"

docs/breadboard/sensor-slider.png

Fritzing diagram: docs/breadboard/sensor-slider.fzz

 

Run this example from the command line with:

node eg/sensor-slider.js
var five = require("johnny-five");
var board = new five.Board();

board.on("ready", function() {

  var slider = new five.Sensor("A0");

  // "slide" is an alias for "change"
  slider.scale([0, 100]).on("slide", function() {
    console.log("slide", this.value);
  });
});

 

License

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