WLedController is an interface, which enables plain Python controll of your WLEDs.
It utilizes the native WLed json-API, for further information check out their documentation.
Since this library is currently under constant development, fell free to submit feedback if there are issues or missing features.
Here you find instructions how to install and use this library.
To run WLedController, you have to ensure
is properly installed and set up.
> pip install WLedController
- download the archive and unpack it.
- enter the directory and run the setup script.
> python setup.py install
- download the archive and unpack it.
- move the "WLedController" subfolder into the directory your script is located.
To use WLedControll you have to create an Object with the correct IP-Adress of your Controller (ESP-32 in my case).
from WLedController import WLedController
with WLedController(wled_ip_address=<IP-Address of WLED Controller>) as WLeds: