blinkstick-node icon indicating copy to clipboard operation
blinkstick-node copied to clipboard

Node.js library for BlinkStick devices.

Results 25 blinkstick-node issues
Sort by recently updated
recently updated
newest added

To make blinkstick-node build, I needed to update the node-hid versin, like here. Cheers.

Bumps [ini](https://github.com/isaacs/ini) from 1.3.5 to 1.3.8. Commits a2c5da8 1.3.8 af5c6bb Do not use Object.create(null) 8b648a1 don't test where our devdeps don't even work c74c8af 1.3.7 024b8b5 update deps, add linting...

dependencies

This code ``` var blinkstick = require('blinkstick'); blinkstick.findAllSerials(function(serials) { console.log(serials); }); var led = blinkstick.findFirst(); ``` fails with error: ``` ...../node_modules/node-hid/nodehid.js:49 this._raw = new (Function.prototype.bind.apply(binding.HID, ^ Error: cannot open device...

Bumps [bl](https://github.com/rvagg/bl) from 3.0.0 to 3.0.1. Release notes Sourced from bl's releases. v3.0.1 Fix unintialized memory access Commits 84e1852 Bumped v3.0.1 8a8c13c Fix unintialized memory access See full diff in...

dependencies

The device variable was declared however the led variable was used giving an undefined error. This corrects this by using the declared variable.

Shouldn't the main code example be (device instead of led): ``` var blinkstick = require('blinkstick'); var device = blinkstick.findFirst(); device.blink('random', function(){ device.pulse('random', function(){ device.setColor('red', function(){ }); }); }); ``` Let...

Howdy all, I'm trying to add this lib to my new project but I'm getting an error from node-gyp. I've realised that we can move to use `node-hid` to fix...

Hi Arvydas, Installing blinkstick on Windows causes 'usb' to try build using node-gyp. Given blink-stick is designed for the more casual of coders, requiring old python, specific run-times and Visual...

I believe this error is coming from the usb library used by blinkstick, however, I was wondering if anyone else has run into this issue and has suggestions on how...

blinkstick works well with node 8, but stops building when bumping to node 9. By depending on usb 1.1.1 _or higher_, it's fixed. (There's a deprecated dependency in usb 1.1.1,...