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
Dear all,
I succesfully installed everything, now I'm struggling a little bit with the configuration of the following 3 dahboard items
speed selector
auto/manual mode selector
boost
which are not updated automatically when i select those options from the Comfoair controller.
If I create an automation to listen to remote changes and then apply them to the HA select options it creates a lot of troubles...
How did you manage the integration?
Dear all,
I succesfully installed everything, now I'm struggling a little bit with the configuration of the following 3 dahboard items
which are not updated automatically when i select those options from the Comfoair controller.
If I create an automation to listen to remote changes and then apply them to the HA select options it creates a lot of troubles...
How did you manage the integration?
My config:
button:
name: "Boost 10m"
id: comfoair_boost_10min
on_press:
then:
- lambda: |-
id(comfo).send_command("boost_10_min");
select:
name: "Speed"
id: comfoair_ventilation_level
optimistic: true
options:
set_action:
if (x == "Speed1") {
id(comfo).send_command("ventilation_level_1");
}
if (x == "Speed2") {
id(comfo).send_command("ventilation_level_2");
}
if (x == "Speed3") {
id(comfo).send_command("ventilation_level_3");
}
if (x == "Assente") {
id(comfo).send_command("ventilation_level_0");
}
name: "Modalità"
id: comfoair_mode
optimistic: true
options:
initial_option: "Auto"
set_action:
if (x == "Auto") {
id(comfo).send_command("auto");
}
if (x == "Manuale") {
id(comfo).send_command("manual");
}
The text was updated successfully, but these errors were encountered: