blinkstick-node
v0.1.0
Published
Provides an interface to control [Blinkstick](https://www.blinkstick.com/) devices with Node.Js.
Downloads
9
Readme
Blinkstick - Node
Provides an interface to control Blinkstick devices with Node.Js.
Install
npm install blinkstick-nodeUsage
import Rgb from "../source/colors/Rgb.js";
import { BlinkStick } from "blinkstick-node";
const devices = BlinkStick.findAll();
if(devices.length) {
const device = devices[0];
await device.connect();
await device.setLedsColor(Rgb.GREEN);
await device.disconnect();
}