johnny-five
Version:
The JavaScript Robotics and Hardware Programming Framework. Use with: Arduino (all models), Electric Imp, Beagle Bone, Intel Galileo & Edison, Linino One, Pinoccio, Raspberry Pi, Spark Core, TI Launchpad and more!
32 lines (26 loc) • 810 B
JavaScript
var five = require("../lib/johnny-five.js");
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();
});
});