npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

node-blink1

v0.5.1

Published

A Node.js library for the blink(1).

Downloads

169

Readme

node-blink1

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

For for info. on the blink(1), see todbot/blink1

Note: Make sure no other programs, including Blink1Control are open and using the blink(1).

Install

npm install node-blink1

Linux Users

See node-hid's compiling from source instructions

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();

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

var blink1 = new 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]); // r, g, b: 0 - 255

blink1.fadeToRGB(fadeMillis, r, g, b, [index, callback]); // r, g, b: 0 - 255
                                                          // index (mk2 only): 0 - 2

Set RGB:

blink1.setRGB(r, g, b, [callback]); // r, g, b: 0 - 255

Get RGB (mk2 only):

blink1.rgb([index,] callback(r, g, b));

Off:

blink1.off([callback]);

Other methods

Disable gamma correction:

blink1.enableDegamma = false   // defaults to true

Set server down [enable, disable], optional callback called after millis ms:

blink1.enableServerDown(millis, [callback]); // tickle

blink1.disableServerDown(millis, [callback]); // off

Play (start playing the pattern lines at the specified position):

blink1.play(position, [callback]);

Play Loop Start playing a subset of the pattern lines at specified start and end positions. Specifying count = 0 will loop pattern forever):

blink1.playLoop(startPosition, endPosition, count, [callback]);

Pause (stop playing the pattern line):

blink1.pause([callback]);

Write pattern line (set the parameters for a pattern line, at the specified position):

blink1.writePatternLine(fadeMillis, r, g, b, position, [callback]) // r, g, b: 0 - 255

A simple example of this, used to flash red on & off is:

blink1.writePatternLine(200, 255, 0, 0, 0);
blink1.writePatternLine(200, 0, 0, 0, 1);
blink1.play(0);

Set 'LedN' Set which LED to address for writePatternLine():

blink1.setLedN(1); // set top LED

An example:

blink1.setLedN(1); // set top LED for pattern position 0
blink1.writePatternLine(200, 255, 0, 0, 0);
blink1.setLedN(2); // set bottom LED for position 1
blink1.writePatternLine(200, 0, 255, 0, 1);
blink1.setLedN(0); // set both LEDs for position 2
blink1.writePatternLine(200, 0, 0, 0, 2);

Save RAM pattern (to blink(1) non-volatile memory)

blink1.writePatternLine(200, 255, 0, 0, 0);
blink1.writePatternLine(200, 0, 0, 0, 1);
blink1.savePattern([callback]);

Note: This command may return an error, but the command did succeed. This is because to save to its internal flash memory, the blink(1) must turn off USB for a moment.

Read pattern line (at the position):

blink1.readPatternLine(position, [callback])

Write User Note (to blink(1) non-volatile memory)

var noteId = 2
blink1.writeUserNote( noteId, "this is a note" )

Close (the underlying HID device):

blink1.close([callback]);

License

Copyright (C) 2015 Sandeep Mistry [email protected]

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.

Analytics