Skip to content

Latest commit

 

History

History
67 lines (32 loc) · 1.07 KB

led-array.md

File metadata and controls

67 lines (32 loc) · 1.07 KB

LEDs - An array of LEDs

Demonstrates controlling multiple LEDs at once through the use of an LED array. Requires LEDs on pins that support PWM (usually denoted by ~).

Breadboard for "LEDs - An array of LEDs"

docs/breadboard/led-array.png

Fritzing diagram: docs/breadboard/led-array.fzz

 

Run this example from the command line with:

node eg/led-array.js
const {Board, Leds} = require("johnny-five");
const board = new Board();

board.on("ready", () => {
  const leds = new Leds([3, 5, 6]);

  leds.pulse();
});

Additional Notes

Control multiple LEDs at once by creating an LED collection (Leds). All must be on PWM pins if you want to use methods such as pulse() or fade()

 

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.