Skip to content

Commit e8df102

Browse files
committed
[icue-link] fix device flags for RX MAX fan (non-RGB)
This device has a temperature sensor.
1 parent 9d8d435 commit e8df102

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,8 @@ Support for the iCUE LINK Hub was added in v1.5.0. The following LINK devices ar
123123
| ------------------------ | --------- | ---------- | ------------ | ----------------- | ------------------ | ---------------- |
124124
| QX Fan | `01` | `00` | Full Support ||||
125125
| LX Fan | `02` | `00` | Full Support ||| n/a |
126+
| RX MAX RGB Fan | `03` | `00` | Full Support ||| n/a |
127+
| RX MAX Fan | `04` | `00` | Full Support ||||
126128
| H100i (Black) | `07` | `00` | Full Support || ✅ <sup>1</sup> ||
127129
| H115i (Black) | `07` | `01` | Full Support || ✅ <sup>1</sup> ||
128130
| H150i (Black) | `07` | `02` | Full Support || ✅ <sup>1</sup> ||

src/devices/icue_link/KnownLinkDevices.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ static KnownLinkDevices()
1919
_devices.Add(new KnownLinkDevice(LinkDeviceType.WaterBlockXg3Series, 0x00, "XG3", LinkDeviceFlags.All));
2020
_devices.Add(new KnownLinkDevice(LinkDeviceType.FanRxSeries, 0x00, "RX Fan", LinkDeviceFlags.ControlsSpeed | LinkDeviceFlags.ReportsSpeed));
2121
_devices.Add(new KnownLinkDevice(LinkDeviceType.FanRxRgbSeries, 0x00, "RX RGB Fan", LinkDeviceFlags.ControlsSpeed | LinkDeviceFlags.ReportsSpeed));
22-
_devices.Add(new KnownLinkDevice(LinkDeviceType.FanRxMaxSeries, 0x00, "RX MAX Fan", LinkDeviceFlags.ControlsSpeed | LinkDeviceFlags.ReportsSpeed));
22+
_devices.Add(new KnownLinkDevice(LinkDeviceType.FanRxMaxSeries, 0x00, "RX MAX Fan", LinkDeviceFlags.All));
2323
_devices.Add(new KnownLinkDevice(LinkDeviceType.FanRxMaxRgbSeries, 0x00, "RX MAX RGB Fan", LinkDeviceFlags.ControlsSpeed | LinkDeviceFlags.ReportsSpeed));
2424
_devices.Add(new KnownLinkDevice(LinkDeviceType.Pump, 0x00, "XD5", LinkDeviceFlags.ReportsTemperature | LinkDeviceFlags.ReportsSpeed)); // stealth gray
2525
_devices.Add(new KnownLinkDevice(LinkDeviceType.Pump, 0x01, "XD5", LinkDeviceFlags.All)); // white

0 commit comments

Comments
 (0)