Skip to content

Latest commit

 

History

History
77 lines (42 loc) · 1.26 KB

led-array-controller.md

File metadata and controls

77 lines (42 loc) · 1.26 KB

LEDs - Controlling an array of LEDs

Demonstrates controlling multiple LEDs at once through the use of an LED array and an analog Potentiometer.

Breadboard for "LEDs - Controlling an array of LEDs"

docs/breadboard/led-array-controller.png

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();
        }
      });
    }
  });
});

 

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.