I just installed the blue canopy module (VZM36). I have integrated it with Home Assistant. When I turn on the fan via HA UI, the speed is always medium, however I want low speed. How can I configure the module to turn on at low speed? Thanks!
I found a workaround. I created a Home Assistant automation that sets the fan speed to low whenever the fan is turned on:
- id: 'ceilingfanlow'
alias: Turn on ceiling fan to low
triggers:
- trigger: state
entity_id: fan.inovelli_vzm36_fan
from: 'off'
to: 'on'
actions:
- action: fan.set_percentage
target:
entity_id: fan.inovelli_vzm36_fan
data:
percentage: 33