PubNubTomomi Imura
Published © GPL3+

Getting Started with Johnny Five for IoT (Part 1)

Tomomi Imura, developer evangelist at PubNub, walks through setting up a Arduino simple circuit to blink a LED on-command using Johhny-Five.

BeginnerProtip10,129
Getting Started with Johnny Five for IoT (Part 1)

Things used in this project

Story

Read more

Schematics

LED - Hello world

Code

blink.js

JavaScript
var five = require('johnny-five');
var board = new five.Board();

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

Credits

PubNub
2 projects • 10 followers
Realtime Apps Made Simple! The global data stream network for IoT, Mobile, and Web applications
Tomomi Imura
5 projects • 26 followers
An open web and open technology advocate. A front-end developer. Self-claimed designer. Cat sitter. Pokémon trainer.

Comments