Riing Plus Controller
Common
| VID | PID (start) | PID (end) |
|---|---|---|
0x264a |
0x1fa5 |
0x1fb5 |
| Name | Description |
|---|---|
| STATUS_BYTE | Byte where 0xfc means success and 0xfe failure |
| LED_COUNT | Number of leds supported by a device connected to a port |
| PORT | Id of the port Starts from 1 to the number of ports on the controller |
| RGB_MODE | Byte value indicating which RGB mode to use Check below for specific values |
| SPEED | Byte value indicating speed in percent From 0 to 100 Speeds from 1 to 19 are ignored |
| COLOR | 3 byte color [g, r, b] |
| COLORS | List of COLOR bytes [g, r, b, g, r, b, ...] |
RGB_SPEED
| Name | Value |
|---|---|
| EXTREME | 0x00 |
| FAST | 0x01 |
| NORMAL | 0x02 |
| SLOW | 0x03 |
RGB_MODE
| Name | Value | Description |
|---|---|---|
| FLOW | 0x00 + RGB_SPEED |
COLORS not used |
| SPECTRUM | 0x04 + RGB_SPEED |
COLORS not used |
| RIPPLE | 0x08 + RGB_SPEED |
Requires 1 COLOR |
| BLINK | 0x0c + RGB_SPEED |
Requires COLORS list with LED_COUNT colors |
| PULSE | 0x10 + RGB_SPEED |
Requires COLORS list with LED_COUNT colors |
| WAVE | 0x14 + RGB_SPEED |
Requires COLORS list with LED_COUNT colors |
| PER_LED | 0x18 |
Requires COLORS list with LED_COUNT colors |
| FULL | 0x19 |
Requires 1 COLOR |
Commands
Values enclosed in
<...>means they are optional
Read Bytesof each command starts with[<REPORT_ID>, FIRST_WRITE_BYTE, SECOND_WRITE_BYTE]but are skipped to improve readability.REPORT_IDis always0x00and is optional depending on the hid library
Write Bytesof each command have to begin with theREPORT_ID(0x00) but it’s skipped to improve readability. Might be optional depending on the hid library
| Name | Write Bytes | Read Bytes | Description |
|---|---|---|---|
| Init | [0xfe, 0x33] |
STATUS_BYTE |
Initializes the controller |
| Get Firmware Version | [0x33, 0x50] |
[MAJOR, MINOR, PATCH] |
Gets controller firmware version Returns 3 bytes that make the version |
| Save Profile | [0x32, 0x53] |
STATUS_BYTE |
Saves the current RGB_MODE and SPEED to the controller memory |
| Set Speed | [0x32, 0x51, PORT, 0x01, SPEED] |
STATUS_BYTE |
Sets speed on PORT to SPEED |
| Set RGB | [0x32, 0x52, PORT, RGB_MODE, <COLORS>] |
STATUS_BYTE |
Sets rgb on PORT to RGB_MODElightning mode with COLORS |
| Get Fan Data | [0x33, 0x51, PORT] |
[PORT, UNKNOWN, SPEED, RPM_L, RPM_H] |
Get fan data for PORTRPM is calculated as RPM_H << 8 + RPM_L |
| Get RGB Data | [0x33, 0x52, PORT] |
[PORT, RGB_MODE + RGB_SPEED, <COLOR(S)>] |
Get rgb data for PORT |
Unknown commands
- Sets speed by RPM?
[0x32, 0x51, PORT, 0x02, PWM_H, PWM_L]STATUS_BYTE