mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-04-21 14:27:26 -04:00
Fix Apex Pro TKL 2023 Wireless (PIDs 0x1630/0x1632) RGB control
This commit is contained in:
committed by
Adam Honse
parent
b3a50d669e
commit
44e6f455e9
@@ -79,7 +79,8 @@ void SteelSeriesApexController::SetLEDsDirect(std::vector<RGBColor> colors)
|
||||
| protocol, make sure to place their PID here and |
|
||||
| further below when developing. |
|
||||
\*-------------------------------------------------*/
|
||||
if(info && (info->product_id == 0x162C || info->product_id == 0x162D
|
||||
if(info && (info->product_id == 0x1630 || info->product_id == 0x1632
|
||||
|| info->product_id == 0x162C || info->product_id == 0x162D
|
||||
|| info->product_id == 0x1644 || info->product_id == 0x1646))
|
||||
{
|
||||
packet_id = APEX_2023_PACKET_ID_DIRECT_WIRELESS;
|
||||
@@ -212,7 +213,8 @@ void SteelSeriesApexController::SendInitialization()
|
||||
| sure to place their PID here and further above for |
|
||||
| wireless when developing. |
|
||||
\*-----------------------------------------------------*/
|
||||
else if(pid == 0x162C || pid == 0x162D
|
||||
else if(pid == 0x1630 || pid == 0x1632
|
||||
|| pid == 0x162C || pid == 0x162D
|
||||
|| pid == 0x1642 || pid == 0x1644 || pid == 0x1646)
|
||||
{
|
||||
use_new_protocol = true;
|
||||
|
||||
Reference in New Issue
Block a user