A library for controlling the Sunix RGB / RGBWWCW WiFi LED Strip controller
Project description
sunix-ledstrip-controller-client
A python 3.4+ library for controlling the Sunix® RGB / RGBWWCW WiFi LED Strip controller.
Build Status
Master |
Beta |
Dev |
---|---|---|
How to use
Installation
pip install sunix-ledstrip-controller-client
Usage
For a basic example have a look at the example.py file. If you need more info have a look at the documentation which should help.
Basic Example
Create the LEDStripControllerClient
object
The first thing you need to communicate with any controller is the api client. Create one like this:
from sunix_ledstrip_controller_client import LEDStripControllerClient
api = LEDStripControllerClient()
The next thing you need is a Controller
object that specifies the basics about your Sunix controller hardware.
You can either let the api search automatically for your controller using:
devices = api.discover_controllers()
or create one manually like this:
from sunix_ledstrip_controller_client import Controller
device = Controller(api, "192.168.2.23")
or including a port if you want to access it from outside of your local network:
device = Controller(api, "my-dyndns-address.org", 12345)
Note that you have to supply an api object so the Controller can fetch is state.
Turn it on!
Now you have all that is needed to control your device. It’s time to turn it on and off! Use this method to turn it on:
device.turn_on()
and this to turn it off:
device.turn_off()
Make it a rainbow (changing colors)
Now to the fun part. The RGB values and the WW (warm white and cold white) value can be adjusted separately (while keeping the other value) or both at the same time.
All values have a valid range of 0
to 255
.
If you only want to change the RGB values use:
device.set_rgb(255, 255, 255)
and this one if you only want to change the WW value:
device.set_ww(255, 255)
To set both at the same time use (you guessed it):
device.set_rgbww(255, 255, 255, 255, 255)
Functions
The official app for the Sunix controller offers 20 different functions that can be activated and customized in speed. These functions are hardcoded in the controller so they can not be altered in any way. You can activate them though using:
from sunix_ledstrip_controller_client import FunctionId
device.set_function(FunctionId.RED_GRADUAL_CHANGE, 240)
Function ids can be found in the FunctionId
enum class.
0 is slow - 255 is fast.
In the network protocol the speed is actually reversed (0 is fast, 255 is slow) but I changed this for the sake of simplicity. You should be aware though that the speed curve seems to be exponential. This means 255 is very fast but 240 is already a lot slower.
Custom Functions
Another feature of the official app is to set a custom color loop with a custom transition and speed between the colors. Since v1.2.0 of this library you can set those too :)
Simply have a look at the example_custom_function.py file for a detailed example.
Set/Get Time
The Sunix® controller has a build in clock to be able to execute timer actions. Currently there is no way to get or set timers with this library. You can however get and set the current time of the controller.
To get the currently set time use:
time = device.get_time()
Note that this might be None
though if you have never set a time for this controller before.
To set a new value use:
dt = datetime.datetime.now()
device.set_time(dt)
Attributions
I want to give a huge shoutout to Chris Mullins (alias sidoh) and his ledenet_api library. Although the protocol used by the sunix controller is not exactly the same to the one used by the LEDENET Magic UFO controller it’s quite similar and his work was a great starting point for me.
Contributing
Github is for social coding: if you want to write code, I encourage contributions through pull requests from forks of this repository. Create Github tickets for bugs and new features and comment on the ones that you are interested in.
License
sunix-ledstrip-controller-client by Markus Ressel Copyright (C) 2017 Markus Ressel This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file sunix_ledstrip_controller_client-2.0.3-py3-none-any.whl
.
File metadata
- Download URL: sunix_ledstrip_controller_client-2.0.3-py3-none-any.whl
- Upload date:
- Size: 19.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.13.0 setuptools/20.10.1 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/2.7.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6917762e98ba3ab1a251e0784b7ce8b21ff94bc79eb32fad9fd9f8f8497390cf |
|
MD5 | cae3710193aa922ab7d3cadcd23d86cc |
|
BLAKE2b-256 | a055ed9c7bae80889a6b96d33cdda771648196e22e08ae5157152caafe75e056 |