Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/scrool/xled
🎄Unofficial control for Twinkly - Smart Decoration LED lights.
https://github.com/scrool/xled
internet-of-things iot python
Last synced: 2 months ago
JSON representation
🎄Unofficial control for Twinkly - Smart Decoration LED lights.
- Host: GitHub
- URL: https://github.com/scrool/xled
- Owner: scrool
- License: mit
- Created: 2017-12-17T21:18:19.000Z (about 7 years ago)
- Default Branch: develop
- Last Pushed: 2023-11-02T21:24:03.000Z (about 1 year ago)
- Last Synced: 2024-11-08T19:53:01.278Z (3 months ago)
- Topics: internet-of-things, iot, python
- Language: Python
- Homepage:
- Size: 232 KB
- Stars: 206
- Watchers: 18
- Forks: 47
- Open Issues: 18
-
Metadata Files:
- Readme: README.rst
- Changelog: HISTORY.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE
- Support: docs/supported_devices.rst
- Authors: AUTHORS.rst
Awesome Lists containing this project
README
==================================================================
XLED - unofficial control of Twinkly - Smart Decoration LED lights
==================================================================XLED is a python library and command line interface (CLI) to control
`Twinkly`_ - Smart Decoration LED lights for Christmas.Official materials says:
Twinkly is a LED light device that you can control via smartphone. It
allows you to play with colouful and animated effects, or create new ones.
Decoration lights, not suitable for household illumination.Since its `Kickstarter project`_ in 2016 many products were introduced with
varying properties and features. Most notably products released since September
2019 are identified as Generation II. Older products are since then referred as
Generation I.Library and CLI are free software available under MIT license.
Installation
------------Both library and CLI tool are supported on Linux, primarily Fedora.
#. First make sure that you have `pip installed`_. E.g. for Fedora:
::
$ sudo dnf install python3-pip python3-wheel
#. You might want to `create and activate a virtual environment`_. E.g.:
::
$ mkdir -p ~/.virtualenvs
$ python3 -m venv ~/.virtualenvs/xled
$ source ~/.virtualenvs/xled/bin/activate#. Install `xled from PyPI`_:
::
$ python3 -m pip install --upgrade xled
Usage
-----If you have installed the project into virtual environment, activate it first. E.g.
.. code-block::
$ source ~/.virtualenvs/xled/bin/activate
Use of the library:
.. code-block:: python
>>> import xled
>>> discovered_device = xled.discover.discover()
>>> discovered_device.id
'Twinkly_33AAFF'
>>> control = xled.ControlInterface(discovered_device.ip_address, discovered_device.hw_address)
>>> control.set_mode('movie')
>>> control.get_mode()['mode']
'movie'
>>> control.get_device_info()['number_of_led']
210`Documentation for the library can be found online`_.
Use of the CLI:
.. code-block:: console
$ xled on
Looking for any device...
Working on device: Twinkly_33AAFF
Turned on.For more commands and options see `xled --help`.
Why?
----My first Twinkly was 105 LEDs starter light set. That was the latest available
model in 2017: TW105S-EU. As of December 2017 there are only two ways to
control lights: mobile app on Android or iOS or hardware button on the cord.Android application didn't work as advertised on my Xiaomi Redmi 3S phone. On
first start it connected and disconnected in very fast pace (like every 1-2
seconds) to the hardware. I wasn't able to control anything at all. Later I
wanted to connect it to my local WiFi network. But popup dialog that shouldn't
have appear never did so.Public API was `promised around Christmas 2016`_ for next season. Later update
from October 2016 it seems `API won't be available any time soon`_:API for external control are on our dev check list, we definitely need some
feedback from the community to understand which could be a proper core set
to start with.It turned out that application uses HTTP to control lights. I ended up with
capturing network traffic and `documented this private API`_. In the end I'm
able to configure the device pretty easilly.As of 2020 Twinkly devices can be controlled by Amazon Alexa and Google
Assistant as well. Mobile application now requires an account to operate lights
even locally. No sign of public API for local devices though. Therefore with my
second device - Twinkly 210 RGB+W Wall I keep improving this library and CLI
documentation to be able to operate my devices locally and not rely on
availability of manufacturer's servers.Related projects
----------------Unofficial documentation of private protocol and API is `available online`_.
For other projects that might be more suitable for your needs see `section client implementations in xled-docs`_.
Credits
---------This package was created with Cookiecutter_ and the
`audreyr/cookiecutter-pypackage`_ project template... _`Twinkly`: https://www.twinkly.com/
.. _`Kickstarter project`: https://www.kickstarter.com/projects/twinkly/twinkly-smart-decoration-for-your-christmas
.. _`available online`: https://xled-docs.readthedocs.io
.. _`documented this private API`: https://xled-docs.readthedocs.io
.. _`promised around Christmas 2016`: https://www.kickstarter.com/projects/twinkly/twinkly-smart-decoration-for-your-christmas/comments?cursor=15497325#comment-15497324
.. _`API won't be available any time soon`: https://www.kickstarter.com/projects/twinkly/twinkly-smart-decoration-for-your-christmas/comments?cursor=14619713#comment-14619712
.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`documented this private API`: https://xled-docs.readthedocs.io
.. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage
.. _`pip installed`: https://packaging.python.org/guides/installing-using-linux-tools/
.. _`create and activate a virtual environment`: https://packaging.python.org/tutorials/installing-packages/#creating-virtual-environments
.. _`xled from PyPI`: https://pypi.org/project/xled/
.. _`Documentation for the library can be found online`: https://xled.readthedocs.io
.. _`section client implementations in xled-docs`: https://xled-docs.readthedocs.io/en/latest/readme.html#client-implementations.. image:: https://badges.gitter.im/xled-community/chat.svg
:alt: Join the chat at https://gitter.im/xled-community/chat
:target: https://gitter.im/xled-community/chat?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge