NachoSoto / node-blink1

A node.js library for the blink(1)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

node-blink1

A node.js library for the blink(1) by ThingM

Install

npm install node-blink1

Usage

var Blink1 = require('node-blink1');

Get list of blink(1) devices connected:

Blink1.devices(); // returns array of serial numbers

Create blink(1) object without serial number, uses first device:

var blink1 = new Blink1.Blink1();

Create blink(1) object with serial number, to get list of serial numbers use Blink1.devices():

var blink1 = new Blink1.Blink1(serialNumber);

Get version:

blink1.version(callback(version))

Set colors

Fade to RGB, optional callback called after fadeMillis ms:

blink1.fadeToRGB(fadeMillis, r, g, b, [callback])

Set RGB:

blink1.setRGB(fadeMillis, r, g, b, [callback])

Other methods

Set server down (on, off), optional callback called after millis ms:

blink1.serverDown(on, millis, [callback])

Play:

blink1.play = function(play, position, [callback])

Write pattern line:

blink1.writePatternLine(fadeMillis, r, g, b, position, [callback])

Read pattern line:

blink1.readPatternLine(position, [callback])

License

Copyright (C) 2012 Sandeep Mistry sandeep.mistry@gmail.com

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

A node.js library for the blink(1)

License:MIT License


Languages

Language:JavaScript 100.0%