Demonstrates controlling multiple LEDs at once through the use of an LED array and an analog Potentiometer.
Fritzing diagram: docs/breadboard/led-array-controller.fzz
Run this example from the command line with:
node eg/led-array-controller.js
const {Board, Leds, Sensor} = require("johnny-five");
const board = new Board();
board.on("ready", () => {
const leds = new Leds([2, 3, 4, 5, 6]);
const pot = new Sensor("A0");
pot.on("change", () => {
const lastIndex = Math.round(pot.scaleTo([-1, 4]));
if (lastIndex === -1) {
leds.off();
} else {
leds.each((led, index) => {
if (index <= lastIndex) {
led.on();
} else {
led.off();
}
});
}
});
});
Copyright (c) 2012-2014 Rick Waldron [email protected] Licensed under the MIT license. Copyright (c) 2015-2023 The Johnny-Five Contributors Licensed under the MIT license.