diff --git a/README.md b/README.md
index 2c351e0..8d796c7 100644
--- a/README.md
+++ b/README.md
@@ -119,6 +119,7 @@ Support for the iCUE LINK Hub was added in v1.5.0. The following LINK devices ar
| Device | Type Code | Model Code | Status | Read Fan/Pump RPM | Set Fan/Pump Power | Read Temp Sensor |
| ------------------ | --------- | ---------- | ------------ | ----------------- | ------------------ | ---------------- |
| QX Fan | `01` | `00` | Full Support | ✅ | ✅ | ✅ |
+| LX Fan | `02` | `00` | Full Support | ✅ | ✅ | n/a |
| H100i (Black) | `07` | `00` | Full Support | ✅ | ✅ 1 | ✅ |
| H115i (Black) | `07` | `01` | Full Support | ✅ | ✅ 1 | ✅ |
| H150i (Black) | `07` | `02` | Full Support | ✅ | ✅ 1 | ✅ |
diff --git a/src/devices/icue_link/KnownLinkDevice.cs b/src/devices/icue_link/KnownLinkDevice.cs
index 41d1cd0..01b3c3e 100644
--- a/src/devices/icue_link/KnownLinkDevice.cs
+++ b/src/devices/icue_link/KnownLinkDevice.cs
@@ -21,6 +21,7 @@ public KnownLinkDevice(LinkDeviceType type, byte model, string name, LinkDeviceF
public enum LinkDeviceType : byte
{
FanQxSeries = 0x01,
+ FanLxSeries = 0x02,
LiquidCooler = 0x07,
WaterBlock = 0x09,
Pump = 0x0c,
diff --git a/src/devices/icue_link/KnownLinkDevices.cs b/src/devices/icue_link/KnownLinkDevices.cs
index 52f30df..ebea261 100644
--- a/src/devices/icue_link/KnownLinkDevices.cs
+++ b/src/devices/icue_link/KnownLinkDevices.cs
@@ -20,6 +20,7 @@ static KnownLinkDevices()
_devices.Add(new KnownLinkDevice(LinkDeviceType.FanRxRgbSeries, 0x00, "RX RGB Fan", LinkDeviceFlags.ControlsSpeed | LinkDeviceFlags.ReportsSpeed));
_devices.Add(new KnownLinkDevice(LinkDeviceType.Pump, 0x00, "XD5", LinkDeviceFlags.ReportsTemperature | LinkDeviceFlags.ReportsSpeed)); // stealth gray
_devices.Add(new KnownLinkDevice(LinkDeviceType.Pump, 0x01, "XD5", LinkDeviceFlags.All)); // white
+ _devices.Add(new KnownLinkDevice(LinkDeviceType.FanLxSeries, 0x00, "LX Fan", LinkDeviceFlags.ControlsSpeed | LinkDeviceFlags.ReportsSpeed));
_deviceLookup = InitializeDeviceLookup();
}