Controls the brightness of an LED by pairing it with a slider. Requires LED on pin that supports PWM (usually denoted by ~).

Breadboard for "LED - Slider"

led-slider.png

Fritzing diagram: led-slider.fzz

 

Run this example from the command line with:

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

board.on("ready", () => {
  const slider = new Sensor("A0");
  const led = new Led(11);

  // Scale the sensor's value to the LED's brightness range
  slider.on("data", () => {
    led.brightness(slider.scaleTo([0, 255]));
  });
});

 

Component Classes in this example:

Hi! The Johnny-Five community is building new projects every day. We made this newsletter to tell you about what's new, what's good, and what's next for Open Source robotics. Join us in exploring what we can make together.

Fork me on GitHub