Control your Sisyphus kinetic art tables (sisyphus-industries.com)
Project description
Control your Sisyphus Kinetic Art Table <https://www.sisyphus-industries.com> from Python 3.6 with asyncio!
This initial release is mainly targeting the functionality needed for basic integrations with home automation systems:
Status queries (playing/paused/current playlist/current/track/brightness/speed)
Play controls (play/pause/shuffle/loop/set playlist/set track)
Table controls (movement speed, LED brightness)
Usage example
Finding tables on your network
To find the IP addresses of all tables on your local network. This is a very naive search; it assumes your subnet mask is 255.255.255.0:
from sisyphus.control import Table ip_addrs = await Table.find_table_ips()
Once you know the IP address, connect to the table:
table = await Table.connect(ip_addr)
Basic controls
In addition to a bunch of properties for querying the current state of the table, Table has several methods that allow simple control:
await table.set_brightness(1.0) # Set maximum LED brightness await table.set_speed(0.5) # Set half speed await table.play() # Resume playing (if not already playing)
Working with playlists and tracks
Playlist and Track objects represent playlists and tracks, respectively. The following code will start playing the Default Playlist, beginning at the track named “Hep” (note that neither playlists nor tracks are required to be uniquely named):
default_playlist = table.get_playlists_named("Default Playlist")[0] hep_track = default_playlist.get_tracks_named("Hep")[0] await hep_track.play()
Future opportunities
The following features would be reasonable to include; I’ll happily accept pull requests:
Playlist editing
Upload tracks to table
Track thumbnail rendering
Table administration (wifi settings, etc.)
Interactions with Sisyphus cloud
Status polling/notificationslay the
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 sisyphus_control-0.1.2-py3-none-any.whl
.
File metadata
- Download URL: sisyphus_control-0.1.2-py3-none-any.whl
- Upload date:
- Size: 9.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 433c11b29da754cb930b1f9cdb6a5e357b98632ca7c6999a840cead9cb04e7cc |
|
MD5 | 2802072a574d8489d127d8a5242d7b48 |
|
BLAKE2b-256 | 4a745a170f3a94573561be583882d745befeff4c47ab529bd20a340769a380d9 |