Led Blink on Intel Edison Arduino Board

Example using Johnny-Five + Edison-IO to directly control an Intel Edison

LED on pin 13

docs/breadboard/led-13-edison-arduinoboard.png

Fritzing diagram: docs/breadboard/led-13-edison-arduinoboard.fzz

 

Run with:

node eg/edison-io-arduino.js
var five = require("johnny-five");
var Edison = require("edison-io");
var board = new five.Board({
  io: new Edison()
});

board.on("ready", function() {
  var led = new five.Led(13);
  led.blink();
});


Illustrations / Photos

Intel Edison Arduino Board

docs/images/edison-arduino-board.jpg

Additional Notes

In order to use the Edison-IO library, you will need to flash the Intel IoTDevKit Image on your Edison. Once the environment is created, install Johnny-Five and Edison-IO.

npm install johnny-five edison-io

Learn More

 

License

Copyright (c) 2012, 2013, 2014 Rick Waldron waldron.rick@gmail.com Licensed under the MIT license. Copyright (c) 2014, 2015 The Johnny-Five Contributors Licensed under the MIT license.