1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-13 01:58:30 +00:00

Added support for QL RGB Fans

This commit is contained in:
Jack L.R. Pendleton 2020-07-20 20:42:11 -05:00
parent 0b76199582
commit 83b45fbfbc
2 changed files with 6 additions and 1 deletions

View File

@ -59,6 +59,7 @@ namespace RGB.NET.Devices.Corsair
case CorsairChannelDeviceType.FanLL:
case CorsairChannelDeviceType.FanML:
case CorsairChannelDeviceType.DAP:
case CorsairChannelDeviceType.FanQL:
return RGBDeviceType.Fan;
case CorsairChannelDeviceType.Strip:
@ -100,6 +101,9 @@ namespace RGB.NET.Devices.Corsair
case CorsairChannelDeviceType.Pump:
return "Pump";
case CorsairChannelDeviceType.FanQL:
return "QL Fan";
default:
throw new ArgumentOutOfRangeException(nameof(deviceType), deviceType, null);
}

View File

@ -18,6 +18,7 @@ namespace RGB.NET.Devices.Corsair
FanML = 4,
Strip = 5,
DAP = 6,
Pump = 7
Pump = 7,
FanQL = 8
};
}