libpurecool
libpurecool copied to clipboard
Power off Dyson Pure Cool Link
First: Thanks for this great library, I have little experience with Python but this was super easy to setup!
I am successfully able to power on my Dyson Pure Cool Link with this:
devices = dyson_account.devices() connected = devices[0].auto_connect() devices[0].set_configuration(fan_mode=FanMode.FAN, fan_speed=FanSpeed.FAN_SPEED_7) time.sleep(5) devices[0].disconnect()
But now I'd also like to power it off again... how do I do that? FAN_SPEED_0 doesn't seem to work and there doesn't seem to be a turn_off() command for the Pure Cool Link?
Does anyone have an idea?