Back to Johnny Five

LED - Fade

docs/led-fade.md

2.1.01.0 KB
Original Source
<!--remove-start-->

LED - Fade

<!--remove-end-->

LED fade example that fades in an led, waits 5 seconds, and then fades it out. Requires LED on pin that supports PWM (usually denoted by ~).

LED on pin 11 (Arduino UNO)

LED inserted directly into pin 11.

Fritzing diagram: docs/breadboard/led-11-pwm.fzz

 

Run this example from the command line with:

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

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

  led.fadeIn();

  // Toggle the led after 5 seconds (shown in ms)
  board.wait(5000, () => {
    led.fadeOut();
  });
});

 

<!--remove-start-->

License

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.

<!--remove-end-->