Important
This package is not affiliated with Logitech. It has been designed to allow anyone to customize the RGB of these devices.
This project is a fork of LogiPy, the original code can be found here
Use the LED SDK to access all LED and RGB backlight functions and features of Logitech G products. Integrate profiles for custom key configurations, develop in-game effects, or mark keys to keep track of cool downs on various commands.
The documentation can be found here.
You can found the test documentation here.
pip install logiledInstall the test version:
pip install -i https://test.pypi.org/simple/ logiledSet all device lighting to red:
from logiled import LogitechLed, load_dll
load_dll()
led = LogitechLed()
led.set_lighting(100, 0, 0)
input("Press enter to shutdown SDK...")
led.shutdown()