Add support for NZXT F120 RGB Duo fan (120mm) in Hue 2 controller

This commit is contained in:
Adam Honse 2023-06-27 11:43:23 -05:00
parent d8b2e884b8
commit f302a19969
2 changed files with 8 additions and 0 deletions

View file

@ -206,6 +206,10 @@ void NZXTHue2Controller::UpdateDeviceList()
num_leds_in_device = 18;
break;
case 0x15: //F120 RGB Duo fan (120mm)
num_leds_in_device = 20;
break;
case 0x17: //F120 RGB Core fan (120mm)
num_leds_in_device = 8;
break;

View file

@ -309,6 +309,10 @@ void RGBController_NZXTHue2::SetupZones()
device_name = "F140 fan (140mm)";
break;
case 0x15: //F120 RGB Duo fan (120mm)
device_name = "F120 Duo fan (120mm)";
break;
case 0x17: //F120 RGB Core fan (120mm)
device_name = "F120 Core fan (120mm)";
break;