From 667cbf4554c458e3c7b2bb051bc5b711e80cbf60 Mon Sep 17 00:00:00 2001 From: Malte Brandy Date: Mon, 3 Jan 2022 10:37:19 +0100 Subject: [PATCH] Change Entfeuchter thresholds --- nixos/roles/home-assistant-local/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/roles/home-assistant-local/default.nix b/nixos/roles/home-assistant-local/default.nix index ee7e5b24..90d8652d 100644 --- a/nixos/roles/home-assistant-local/default.nix +++ b/nixos/roles/home-assistant-local/default.nix @@ -111,14 +111,14 @@ in conditions = [{ condition = "or"; conditions = [ - { condition = "numeric_state"; entity_id = "sensor.schlafzimmer_humidity"; below = 64; } + { condition = "numeric_state"; entity_id = "sensor.schlafzimmer_humidity"; below = 69; } { condition = "state"; entity_id = "binary_sensor.schlafzimmerfenster"; state = "on"; } ]; }]; sequence = { service = "switch.turn_off"; target.entity_id = "switch.luftentfeuchter"; }; } { - conditions = [{ condition = "numeric_state"; entity_id = "sensor.schlafzimmer_humidity"; above = 66; }]; + conditions = [{ condition = "numeric_state"; entity_id = "sensor.schlafzimmer_humidity"; above = 71; }]; sequence = { service = "switch.turn_on"; target.entity_id = "switch.luftentfeuchter"; }; } ];