Releases: jath03/openrgb-python
Releases · jath03/openrgb-python
v0.0.3 - Mode setting
In this update the ability to set a device's mode was added!
from openrgb import OpenRGBClient
cli = OpenRGBClient()
cli.devices[0].set_mode(0) # by mode id
cli.devices[1].set_mode('spectrum cycle') # by mode name
cli.devices[2].set_mode(cli.devices[2].modes[5]) # by passing a ModeData object
Initial Release
v0.0.1 was an accidental release on PyPI, so here is a working v0.0.2! Now with documentation and working code!
Installation
pip3 install openrgb-python