1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
|
Metadata-Version: 2.4
Name: liquidctl
Version: 1.15.0
Summary: Cross-platform tool and drivers for liquid coolers and other devices
Home-page: https://github.com/liquidctl/liquidctl
Author: Jonas Malaco
Author-email: jonas@protocubo.io
Project-URL: Documentation, https://github.com/liquidctl/liquidctl/blob/main/README.md
Project-URL: Changelog, https://github.com/liquidctl/liquidctl/blob/main/CHANGELOG.md
Project-URL: Source, https://github.com/liquidctl/liquidctl
Keywords: aio,aquacomputer,asus,clc,cli,corsair,cross-platform,dram,driver,evga,fan-controller,gigabyte,hue2,kraken,led-controller,liquid-cooler,nzxt,power-supply,smart-device
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: System :: Hardware :: Hardware Drivers
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: colorlog
Requires-Dist: crcmod==1.7
Requires-Dist: docopt
Requires-Dist: hidapi
Requires-Dist: pyusb
Requires-Dist: pillow
Requires-Dist: libusb-package; sys_platform == "win32" or sys_platform == "cygwin"
Requires-Dist: winusbcdc>=1.5; sys_platform == "win32"
Requires-Dist: smbus; sys_platform == "linux"
Dynamic: license-file
# liquidctl – liquid cooler control
Cross-platform tool and drivers for liquid coolers and other devices.
Go to the [project homepage] for more information.
```
$ liquidctl list
Device #0: Corsair Vengeance RGB DIMM2
Device #1: Corsair Vengeance RGB DIMM4
Device #2: NZXT Smart Device (V1)
Device #3: NZXT Kraken X (X42, X52, X62 or X72)
# liquidctl initialize all
NZXT Smart Device (V1)
├── Firmware version 1.7
├── LED accessories 2
├── LED accessory type HUE+ Strip
└── LED count (total) 20
NZXT Kraken X (X42, X52, X62 or X72)
└── Firmware version 6.2
# liquidctl status
NZXT Smart Device (V1)
├── Fan 1 speed 1499 rpm
├── Fan 1 voltage 11.91 V
├── Fan 1 current 0.05 A
├── Fan 1 control mode PWM
├── Fan 2 [...]
├── Fan 3 [...]
└── Noise level 61 dB
NZXT Kraken X (X42, X52, X62 or X72)
├── Liquid temperature 34.7 °C
├── Fan speed 798 rpm
└── Pump speed 2268 rpm
# liquidctl status --match vengeance --unsafe=smbus,vengeance_rgb
Corsair Vengeance RGB DIMM2
└── Temperature 37.5 °C
Corsair Vengeance RGB DIMM4
└── Temperature 37.8 °C
# liquidctl --match kraken set fan speed 20 30 30 50 34 80 40 90 50 100
# liquidctl --match kraken set pump speed 70
# liquidctl --match kraken set sync color fixed 0080ff
# liquidctl --match "smart device" set led color moving-alternating "hsv(30,98,100)" "hsv(30,98,10)" --speed slower
```
[project homepage]: https://github.com/liquidctl/liquidctl
|