Skip to content

simon-wh/Wooting.NET

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Wooting.NET

Build status

Simple wrapper library for wooting-rgb-sdk and wooting-analog-sdk

Basic Usage

Have a look at the test project for some more examples.

The WootingKey.Keys enum is available to make it simpler to apply operations to certain keys

RGB

Requires wooting-rgb-sdk.dll to be included alongside the wrapper

RGBControl.IsConnected(); //Check if a keyboard is connected
RGBControl.SetKey(WootingKey.Keys.Esc, 255, 0, 0, true) //Set the Escape key to red

Analog

Requires wooting-analog-sdk.dll to be included alongside the wrapper

byte data = AnalogReader.ReadAnalog(WootingKey.Keys.Esc) //Get the analog data from the Esc key