Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

corsair-sdk

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package version was removed
This package version has been unpublished, mostly likely due to security reasons

corsair-sdk

Corsair Cue SDK wrapper for node.js

unpublished
latest
Source
npmnpm
Version
1.2.0
Version published
Maintainers
1
Created
Source

corsair-sdk

corsair-sdk enables you to interact with the Corsair CUE SDK, in NodeJS.

This is a fork of cue-sdk-node2, with support for NodeJS 9.0

Usage

Find the Documentation over at the Wiki

Synchronous

import CueSDK from 'corsair-sdk'
const cue = new CueSDK()

// Set single color
cue.set('W', 255, 255, 255)

// You can set multiple colors at the time!
cue.set([['A', 255, 0, 0], ['S', 0, 255, 0], ['D', 0, 0, 255]])

// Special keys/lights are also supported!
cue.set('Logo', 255, 255, 0)

// To turn off all leds
cue.clear()

Asynchronous

import CueSDK from 'corsair-sdk'
const cue = new CueSDK()

// Set single color
cue.set('A', 255, 255, 0, () => {
  console.log('Lights set!')
})

// Set multiple colors
cue.set([['A', 255, 0, 0], ['S', 0, 255, 0], ['D', 0, 0, 255]], () => {
  console.log('Three lights set!')
})

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:

FAQs

Package last updated on 06 Apr 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts