Back to Johnny Five

Led Blink on Intel Edison Arduino Board

docs/edison-io-arduino.md

2.1.01.4 KB
Original Source
<!--remove-start-->

Led Blink on Intel Edison Arduino Board

<!--remove-end-->

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

LED on pin 13

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

 

Run this example from the command line with:

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

board.on("ready", () => {
  const led = new Led(13);
  led.blink();
});


Illustrations / Photos

Intel Edison Arduino Board

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.

sh
npm install johnny-five edison-io

Learn More

 

<!--remove-start-->

License

Copyright (c) 2012-2014 Rick Waldron [email protected] Licensed under the MIT license. Copyright (c) 2015-2023 The Johnny-Five Contributors Licensed under the MIT license.

<!--remove-end-->