You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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?
The text was updated successfully, but these errors were encountered:
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?
The text was updated successfully, but these errors were encountered: