nefry-io
v0.0.4
Published
Johnny-Five Adapter for Nefry.
Downloads
1
Readme
Johnny-Five Adapter for Nefry
Install
npm i --save johnny-five nefry-io
How to use
'use strict';
const five = require("johnny-five");
const Nefry = require('nefry-io');
const board = new five.Board({
io: new Nefry('12.12.12.12') // Your IP Address
});
board.on("ready", () => {
const led = new five.Led(18);
led.blink(1000);
});