Skip to content
This repository has been archived by the owner on Jan 10, 2023. It is now read-only.

Latest commit

 

History

History
28 lines (19 loc) · 686 Bytes

README.md

File metadata and controls

28 lines (19 loc) · 686 Bytes

Python control for Eufy LED bulbs

A simple Python API for controlling LED bulbs from Eufy.

Example use

This will connect to a bulb and turn it on at 50% brightness and the coldest colour temperature.

import lakeside

bulb = lakeside.bulb(ip_address, access_code, type)
bulb.connect()
bulb.set_state(power=True, brightness=50, temperature=100)

The ip, access code and type can be obtained by doing:

import lakeside

devices = lakeside.get_devices(username, password)

where username and password are the credentials used in the Eufy app.

This is not an officially supported Google project.