A simple Python API for controlling LED bulbs from Eufy.
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.