kraken3: list support for the Z53 model

Presumably, like the Z63 and Z73, it is identical to them at the
software level.
This commit is contained in:
Jonas Malaco 2021-04-16 13:22:23 -03:00
parent 0946b8a9e4
commit f4f6a6d9a0
5 changed files with 7 additions and 7 deletions

View File

@ -92,7 +92,7 @@ The following devices are supported by this version of liquidctl. See each guid
| AIO liquid cooler | [NZXT Kraken X31, X41, X61](docs/asetek-690lc-guide.md) | USB | <sup>_LZE_</sup> |
| AIO liquid cooler | [NZXT Kraken X42, X52, X62, X72](docs/kraken-x2-m2-guide.md) | USB HID | |
| AIO liquid cooler | [NZXT Kraken X53, X63, X73](docs/kraken-x3-z3-guide.md) | USB HID | |
| AIO liquid cooler | [NZXT Kraken Z63, Z73](docs/kraken-x3-z3-guide.md) | USB & USB HID | <sup>_E_</sup> |
| AIO liquid cooler | [NZXT Kraken Z53, Z63, Z73](docs/kraken-x3-z3-guide.md) | USB & USB HID | <sup>_E_</sup> |
| DDR4 DRAM | [Corsair Vengeance RGB](docs/ddr4-guide.md) | SMBus | <sup>_EUX_</sup> |
| DDR4 DRAM | [DIMMs with a standard temperature sensor](docs/ddr4-guide.md) | SMBus | <sup>_EUX_</sup> |
| Fan/LED controller | [Corsair Commander Pro](docs/corsair-commander-guide.md) | USB HID | <sup>_E_</sup> |

View File

@ -15,7 +15,7 @@ The X models incorporate customizable pump speed control, a liquid temperature p
All capabilities available at the hardware level are supported, but other features offered by CAM, like presets based on CPU or GPU temperatures, are not part of the scope of the liquidctl CLI.
## NZXT Kraken Z63, Z73
## NZXT Kraken Z53, Z63, Z73
The most notable difference between Kraken X and Kraken Z models is the replacement of the infinity mirror by a OLED screen.

View File

@ -174,7 +174,7 @@ SUBSYSTEMS=="usb", ATTRS{idVendor}=="1e71", ATTRS{idProduct}=="170e", TAG+="uacc
# NZXT Kraken X (X53, X63 or X73)
SUBSYSTEMS=="usb", ATTRS{idVendor}=="1e71", ATTRS{idProduct}=="2007", TAG+="uaccess"
# NZXT Kraken Z (Z63 or Z73)
# NZXT Kraken Z (Z53, Z63 or Z73)
SUBSYSTEMS=="usb", ATTRS{idVendor}=="1e71", ATTRS{idProduct}=="3008", TAG+="uaccess"
# NZXT RGB & Fan Controller

View File

@ -360,8 +360,8 @@ The animation direction can be set with
where the allowed values are: \fIforward\fR or \fIbackward\fR.
.
.SS NZXT Kraken X53, X63, X73
.SS NZXT Kraken Z63, Z73
Cooling channels: \fIpump\fR; (only Z63, Z73:) \fIfan\fR.
.SS NZXT Kraken Z53, Z63, Z73
Cooling channels: \fIpump\fR; (only Z53, Z63, Z73:) \fIfan\fR.
.PP
Lighting channels: \fIexternal\fR; (only X53, X63, X73:) \fIring\fR, \fIlogo\fR, \fIsync\fR.
.TS

View File

@ -3,7 +3,7 @@
Supported devices:
- NZXT Kraken X (X53, X63 and Z73)
- NZXT Kraken Z (Z63 and Z73); no OLED screen control yet
- NZXT Kraken Z (Z53, Z63 and Z73); no OLED screen control yet
Copyright (C) 20202021 Tom Frey, Jonas Malaco and contributors
SPDX-License-Identifier: GPL-3.0-or-later
@ -349,7 +349,7 @@ class KrakenZ3(KrakenX3):
"""Fourth-generation Kraken Z liquid cooler."""
SUPPORTED_DEVICES = [
(0x1e71, 0x3008, None, 'NZXT Kraken Z (Z63 or Z73) (experimental)', {
(0x1e71, 0x3008, None, 'NZXT Kraken Z (Z53, Z63 or Z73) (experimental)', {
'speed_channels': _SPEED_CHANNELS_KRAKENZ,
'color_channels': _COLOR_CHANNELS_KRAKENZ,
})