Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Johnny Five for noobs

Johnny Five for noobs

Thiago Alves Luiz

July 30, 2016
Tweet

More Decks by Thiago Alves Luiz

Other Decks in Technology

Transcript

  1. Newbie, or noob, is a slang term for a novice

    or somebody inexperienced in any activity. — Wikipedia
  2. Arduino void setup() { pinMode(13, OUTPUT); } void loop() {

    digitalWrite(13, HIGH); delay(1000); digitalWrite(13, LOW); delay(1000); }
  3. Johnny Five var five = require('johnny-five'); var board = new

    five.Board(); board.on('ready', function() { var led = new five.Led(13); led.blink(); });
  4. How I learned · What's a protoboard? · Why I

    need a resistor? · Some tutorials