From 8ace630aeb5b8def481eb9d76f94d31cb4de24e5 Mon Sep 17 00:00:00 2001 From: jabertwo <git@jabertwo.de> Date: Sat, 8 Jul 2023 17:29:20 +0200 Subject: [PATCH] Automatisierung um alle Heizungen einzushalten --- .../templates/config/configuration.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/intern/docker_homeassistant/templates/config/configuration.yaml b/intern/docker_homeassistant/templates/config/configuration.yaml index d8dd538d..8c6ef824 100644 --- a/intern/docker_homeassistant/templates/config/configuration.yaml +++ b/intern/docker_homeassistant/templates/config/configuration.yaml @@ -312,6 +312,22 @@ automation ansible: - climate.vortragsraum_vorne mode: single + # turn on all radiators + - alias: ANSIBLE_heizung_an + description: Schaltet alle Heizungen aus + trigger: [] + condition: [] + action: + - service: climate.turn_on + target: + entity_id: + - climate.hackcenter_mitte + - climate.lounge_vorne + - climate.treppenhaus_thermostat_1 + - climate.vortragsraum_vorne + - service: + mode: single + # Feinstaubsensor steuert Luftfilter - alias: ANSIBLE_Feinstaubsensor_Luftfilter description: Feinstaubsensor steuer Luftfilter -- GitLab