Skip to main content

Simple python package to control smart lights using the Triones porotocol

Project description

trionesControl

This module implements the triones protocol reverse engineered by madhead with python, offering a programmatic way to control these kind of lights without needing the app on your phone. To learn more about the protocol, please read the following specification:

Requirements

This package only works on Linux, it uses pygatt and depends on blueZ.

The package has been tested in python 3 (3.8.5) but it may work on previous versions, even python 2.7, as long as pygatt requirements are met.

Installation

Install trionesControl with pip from PyPI:

pip install trionesControl

This will install all the dependencies used by this package and pexpect, an optional pygatt needed to use it's BlueZ backend.

Documentation

Connexion handling

  • connect(MAC): Connect to the device with the mac address specified.
  • connect(MAC, False): Connect to the device with the mac address specified and dont reset previous connections for using multiple devices at once.
  • disconnect(device): Disconnects from the specified device.

LED Control

  • powerOn(device): Powers on the device, the LEDs will turn on.

  • powerOff(device): Powers off the device, the LEDs will turn off.

  • setRGB(r: int, g: int, b: int, device): Sets the LED color configuration of the device to the r, g and b colors. (0-255)

  • setWhite(intensity: int, device): Sets the device's LED to white with the specified intensiy. (0-255)

  • setBuiltIn(mode: int, speed: int, device): Activates the selected predefined built-in mode at the selected speed (0-255). The built modes go from 37 to 56.

All the functions do not wait for any response from the device by default. This can be overriden by adding an aditional argument set to True.

  • powerOn(device, True): Powers on the device, the LEDs will turn on and waits for a reponse.

Example use

The unittest code available in tests/test.py can be used as a sample to use the available functions of the package. You can test your bulb / LED strip by using the following code too.

Connect and power on the device

import time
import trionesControl.trionesControl as tc

#Change the mac address to the one of your bulb or LED strip
device = tc.connect('00:00:00:00:00:00')
tc.powerOn(device)

Change colors

# RGB mode
tc.setRGB(100,100,100, device)
time.sleep(1)
tc.setRGB(255, 255, 255, device)
time.sleep(1)
tc.setRGB(255,0,0, device)
time.sleep(1)
tc.setRGB(0,255,0, device)

#White mode
time.sleep(10)
tc.setWhite(255, device)

Built-in modes

#Change built-in modes (37-56)
time.sleep(10)
tc.setBuiltIn(37, 1)
tc.time(10)

Power off and disconnect

tc.powerOff(device)
tc.disconnect(device)

Licence

MIT Licence - Copyright 2020 Aritz Herrero

For more information, check LICENCE file.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

trionesControl-1.2.0.tar.gz (4.0 kB view details)

Uploaded Source

Built Distribution

trionesControl-1.2.0-py3-none-any.whl (4.8 kB view details)

Uploaded Python 3

File details

Details for the file trionesControl-1.2.0.tar.gz.

File metadata

  • Download URL: trionesControl-1.2.0.tar.gz
  • Upload date:
  • Size: 4.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.5

File hashes

Hashes for trionesControl-1.2.0.tar.gz
Algorithm Hash digest
SHA256 15f2ee511ac1bbd05810e79b276787089c1e9e6deee423d82f3f8bf975b4aac6
MD5 b3a3d14719150ef2b6be18046384a2b3
BLAKE2b-256 5fcfeae0ad34ce1a4da21c5e59434e12e4bc8f52b897371c628e3c847479a90b

See more details on using hashes here.

File details

Details for the file trionesControl-1.2.0-py3-none-any.whl.

File metadata

  • Download URL: trionesControl-1.2.0-py3-none-any.whl
  • Upload date:
  • Size: 4.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.5

File hashes

Hashes for trionesControl-1.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 98314503754dadce4c8cb8fc4406a73c8fc7c78013fdaebae4f4c87f321d518d
MD5 f0e6047a6df5edea063639766eea7f2c
BLAKE2b-256 48955ecb5e0e62f3565f9c92d45672ba81077bb8943e66bad72734031702d178

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page