Hi.
I have set my house vent system up with Mqtt control and im exposing this to my home app (apple HomeKit).
I got this error in the log:
WARNING (SyncWorker_18) [homeassistant.components.homekit.util] [‘low’, ‘medium’, ‘high’] does not contain the speed setting off as its first element. Assuming that low is equivalent to ‘off’.
The yaml config looks like this:
fan:
- platform: mqtt
name: "Nilan"
state_topic: "ventilation/control/RunSet"
command_topic: "ventilation/runset"
speed_state_topic: "ventilation/control/VentSet"
speed_command_topic: "ventilation/ventset"
qos: 1
retain: true
payload_on: "1"
payload_off: "0"
payload_low_speed: "1"
payload_medium_speed: "3"
payload_high_speed: "4"
speeds:
- low
- medium
- high
The vent system actually has 4 fan modes 1-4, so I don’t know if this is causing the issue?