Skip to content

Python library to control Sengled Wifi devices. Intended to be used with Home Assistant.

License

Notifications You must be signed in to change notification settings

cpadil/sengledwifipy

Repository files navigation

SengledWifiPy

License Python version compatibility Version on PyPi

Python package for controlling Sengled Wifi devices.

NOTE: This has no relation with Sengled. There's no official API.

Features:

  • Simulates the behavior of the Android App.
  • Create a websocket connection to the MQTT broker to receive updates (Cloud Push).
  • Alternative method to publish an update without creating a websocket connection.

Documentation

Code Documentation

TL;DR The package is based on 3 classes:

  • SengledWifiLogin - Takes care of the login (requires credentials), reduces the API calls to a minimum by saving a session cookie locally.
  • SengledWifiMqtt - Requires a login (SengledWifiLogin), creates the connection to the MQTT server, subscribe to topics and publish updates. Is a wrapper for paho-mqtt.
  • SengledWifiApi - Uses the other two classes to get/set devices state

Usage example

Simple example that will subscribe to all the topics related to the devices in the Sengled account. SengledWifiMqtt can also receive callbacks for new messages (will be executed when an update is received).

import logging
import asyncio
from sengledwifipy import SengledLogin, SengledWifiAPI, SengledWifiMQTT

#set this for testing only
logging.basicConfig(level=logging.DEBUG)

def testing():
    async def testmqtt():
        login = SengledLogin(email = "email@domain.com",password  = "verysecure")
        await login.login()
        devices = await SengledWifiAPI.get_devices(login)
        MqttClient = SengledWifiMQTT(login)
        await MqttClient.async_connect(devices)
        while True:
            await asyncio.sleep(60)
    return asyncio.run(testmqtt())

testing()

This is a way to update the device state:

SengledWifiAPI.set_device_state(MqttClient,"deviceId",power_on=True, brightness=100)

Contributing

  1. Check for open features/bugs.
  2. Fork the repository.
  3. (Recommended) Use the latest version of Python supported >= 3.12.
  4. (Recommended) Install poetry (recommended installation method: pipx):
    • pipx install poetry
  5. Install the development environment:
    • poetry install --with dev
    • pre-commit install
  6. Code your new feature or bug fix on a new branch.
  7. Make sure to update the docstring as required.
  8. Submit a pull request!

Credits

Inspired by:

About

Python library to control Sengled Wifi devices. Intended to be used with Home Assistant.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages