Example using Johnny-Five + Galileo-IO to directly control an Intel Galileo Gen 2

LED on pin 13

led-13-galileo.png

Fritzing diagram: led-13-galileo.fzz

 

Run this example from the command line with:

node eg/galileo-io.js
const { Board, Led } = require("johnny-five");
const Galileo = require("galileo-io");
const board = new Board({
  io: new Galileo()
});

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


Illustrations / Photos

Galileo Gen 2

galileo-gen2.jpg

Additional Notes

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

npm install johnny-five galileo-io

Learn More

 

Component Classes in this example:

Hi! The Johnny-Five community is building new projects every day. We made this newsletter to tell you about what's new, what's good, and what's next for Open Source robotics. Join us in exploring what we can make together.

Fork me on GitHub