-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathled.js
31 lines (26 loc) · 800 Bytes
/
led.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
var five = require("johnny-five");
var board = new five.Board();
board.on("ready", function() {
// Create a standard `led` component
// on a valid pwm pin
var led = new five.Led(11);
// Instead of passing a time and rate, you can
// pass any valid Animation() segment opts object
// https://github.com/rwaldron/johnny-five/wiki/Animation#segment-properties
led.pulse({
easing: "linear",
duration: 3000,
cuePoints: [0, 0.2, 0.4, 0.6, 0.8, 1],
keyFrames: [0, 10, 0, 50, 0, 255],
onstop: function() {
console.log("Animation stopped");
}
});
// Stop and turn off the led pulse loop after
// 12 seconds (shown in ms)
this.wait(12000, function() {
// stop() terminates the interval
// off() shuts the led off
led.stop().off();
});
});