Skip to content

Releases: jath03/openrgb-python

v0.0.3 - Mode setting

05 Jun 21:50
Compare
Choose a tag to compare

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

28 May 20:27
Compare
Choose a tag to compare
Initial Release Pre-release
Pre-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