node-cue-sdk
Node.js Corsair Cue SDK wrapper
node-cue-sdk
is a Node.js addon for loading and and using the Cue SDK in
pure JavaScript.
Documentation
Example with asynchonous functions
var CueSDK = ;var cue = ;// The CueSDK.set function can also work asynchonously, just add a function to the arguments and it'll be asynchonouscue;cue; // Set A to red, S to green, and D to blue// fade from black [0, 0, 0] to cyan [0, 255, 255] in 1000mscue;
Example with synchonous functions
var CueSDK = ;var cue = ;cue; // Set the W key to #FFFFFF aka white// You can set multiple colors at the time!cue; // Set A to red, S to green, and D to blue// Special keys/lights are also supported!cue; // Make the Corsair logo yellow// To turn off all ledscueclear;
Requirements
- Windows (Linux and Mac OSX are currently not supported by the CueSDK)
- Node.js
5.0.0
or higher
Installation
Make sure you've installed all the necessary build tools, then run this command in the source directory:
$ npm install cue-sdk-node