Added Initial Support for F360 RGB Fans with the NZXT RGB Controller

This commit is contained in:
Sebastian 2025-01-27 20:56:35 +00:00 committed by Adam Honse
parent f0025e817b
commit 47c6305f77
2 changed files with 8 additions and 0 deletions

View file

@ -228,6 +228,10 @@ void NZXTHue2Controller::UpdateDeviceList()
num_leds_in_device = 8;
break;
case 0x1D: //F360 RGB Core Fan Case Version (360mm)
num_leds_in_device = 24;
break;
default:
break;
}

View file

@ -332,6 +332,10 @@ void RGBController_NZXTHue2::SetupZones()
device_name = "F120 Core fan case version (120mm)";
break;
case 0x1D: //F360 Core fan case version (360mm)
device_name = "F360 Core fan case version (360mm)";
break;
default:
break;
}