We only had 40 minutes, but we got >250 people to harness the power of Prometheus. I call that a success.
View Slide
Raquel Vélez@rockbotRick Waldron@rwaldronElijah Insua@tmpvar
1. Clean up after yourself2. Keep all your stuff together - no mixing!3. Ask many questions4. If it breaks, don’t cryTODO
International Nodebots Day - July 27, 2013nodebotsday.comRobotsConf - Dec 6-7, 2013robotsconf.comMOAR
var five = require("johnny-five");five.Board().on("ready", function() {// "strobe" an led in 1000ms on-off phasesfive.Led(13).strobe(1000);});
bit.ly/19DSbaG
var five = require("johnny-five"),button, led;five.Board().on("ready", function() {button = new five.Button(8);led = new five.Led(13);button.on("down", function() {led.on();});button.on("up", function() {led.off();});});