Socket
Book a DemoInstallSign in
Socket

pcduino-io

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pcduino-io

pcDuino IO Plugin for Johnny-Five

Source
npmnpm
Version
0.2.2
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Source

pcDuino-IO

Build Status

pcDuino-IO is compatible with pcDuino3

pcDuino-IO is an IO-Plugin class for writing Node.js programs with Johnny-Five that run on the pcDuino3. This project was built at Bocoup

Getting Started

pcDuino-IO scripts are run directly from the pcDuino3 (or similar in family) board. Assuming your pcDuino has already been setup for networking, getting started is easy:

Install a compatible version of node/npm

wget http://nodejs.org/dist/v0.10.24/node-v0.10.24-linux-arm-pi.tar.gz
tar xvzf node-v0.10.24-linux-arm-pi.tar.gz
cd node-v0.10.24-linux-arm-pi
sudo cp -R * /usr/local

Create a directory for your project, cd into the directory and run the following:

npm init; # follow the prompts
npm install johnny-five pcduino-io --save

"Hello World!" with Johnny-Five

var five = require("johnny-five");
var pcDuino = require("pcduino-io");
var board = new five.Board({
  io: new pcDuino()
});

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

License

See LICENSE file.

Keywords

pcduino

FAQs

Package last updated on 07 Oct 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts