Hey All,
I have for a while this warning from Watchman:
fan.FanEntityFeature [missing] services.yaml
How can I solve this issue? There is no services.yaml…
Hey All,
I have for a while this warning from Watchman:
fan.FanEntityFeature [missing] services.yaml
How can I solve this issue? There is no services.yaml…
What about showing us the config of the fan
Here you are ![]()
- fan:
- name: "mechanical_ventilation"
state: >
{{ "off" if states('sensor.fan_speed') == 'off' else "on" }}
percentage: >
{% set speed = {'off': 0, 'low': 33, 'medium': 66, 'high': 100} %}
{{ speed.get(states('sensor.fan_speed'), 0) }}
turn_on:
action: switch.turn_on
data:
entity_id: switch.fan_high
turn_off:
action: switch.turn_on
data:
entity_id: switch.fan_standby
set_percentage:
action: switch.turn_on
data_template:
entity_id: >
{% set id_mapp = {0: 'switch.fan_standby', 33:'switch.fan_low', 66:'switch.fan_medium', 100:'switch.fan_high'} %}
{{id_mapp[percentage]}}
speed_count: 2