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
AC.txt
Dont know where to put this Thread, so here it is.
Feel free to move like you wish.
I createt an automation based on the temperature (like in the official app).
Humidity will be added in the future.
Here is my example and i hope this will help someone. (For 22°C and below = Fan Level 1 /// For every +1°C = Fan Level + 1)
alias: ALIAS
description: ""
trigger:
platform: state
entity_id: SENSOR.YOURTEMPSENSOR
action:
What mode does the AC Infinity need to be in to allow HA to control the fan speed? As far as I can tell, HA is able read the state of the AC Infinity, but not change it.
AC.txt
Dont know where to put this Thread, so here it is.
Feel free to move like you wish.
I createt an automation based on the temperature (like in the official app).
Humidity will be added in the future.
Here is my example and i hope this will help someone. (For 22°C and below = Fan Level 1 /// For every +1°C = Fan Level + 1)
alias: ALIAS
description: ""
trigger:
entity_id: SENSOR.YOURTEMPSENSOR
action:
data_template:
entity_id: FAN.YOURFAN
percentage: >-
{% set temperature_difference =
states('SENSOR.YOURTEMPSENSOR') | float - 22 %} {% set
fan_speed = 10 + (temperature_difference // 1) * 10 %} {% if fan_speed <
10 %}
10
{% elif fan_speed > 100 %}
100
{% else %}
{{ fan_speed }}
{% endif %}`
If you don´t want to flood your logbook, you should exlude it with the exclude argument in the configuration.yaml
logbook:
exclude:
entities:
- automation.acinfinityautomation
EDIT: I´m to dumb for creating post with the right format, so please see the ac.txt file. Sorry for that.
The text was updated successfully, but these errors were encountered: