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

Skynet.js

Flurin Egger
February 24, 2015

 Skynet.js

We’ve been able to use JavaScript in the browser for quite some time now and even on the server it’s nothing new, but what if we could use JavaScript to control hardware? With the rise of “the Internet of Things” and the simplicity of the Arduino platform this is no longer just a dream it offers us a vast amount of possibilities. In this session we’re going to look at just the tip of the iceberg of these options (no worries, we will not create any self-aware machinery).

Interactive slides can be found here: http://skynetjs.talks.flurin.nl

Flurin Egger

February 24, 2015
Tweet

More Decks by Flurin Egger

Other Decks in Programming

Transcript

  1. var five = require("johnny-five"); var board = new five.Board(); var

    led; board.on("ready", function() { led = new five.Led({ pin: 13 }) led.strobe(); });
  2. +

  3. + +