diff --git a/dokumenter/TODO.md b/dokumenter/TODO.md index ca1295a..091a6e2 100644 --- a/dokumenter/TODO.md +++ b/dokumenter/TODO.md @@ -1,5 +1,18 @@ # TODO - Pending Tasks +## Home Assistant - Åbne opgaver + +### HA-fejl der skal fikses +- [ ] **Mealie shopping merge timeout** — `mealie_shopping_merge.py` timer ud efter 60s (HA shell_command grænse). Skal enten optimeres eller køres som en separat daemon/REST API udenfor HA. +- [ ] **aiohttp 400 Bad Request fra ekstern IP** — `66.132.195.116` sendte ugyldig HTTP/2 request til HA (kl. 01:51). Undersøg om HA er korrekt beskyttet bag reverse proxy / firewall. +- [ ] **switch.home_charging mangler** — EV-view responderer ikke. Undersøg om Zaptec/EV-integration er nede. +- [ ] **climate.badevarelse mangler** — Touchline termostat i badeværelset ikke monteret endnu. + +### HA - Kendte ikke-fejl (ingen handling nødvendig) +- `husqvarna_automower_ble` BLE fejl — normalt når plæneklipperen klipper +- `light.spejl1/spejl2` mangler — strøm slukket på kontakt, OK + + ## Gitea External HTTPS Access **Status:** Partial - content accessible but SSL certificate warning diff --git a/include/automations/julelys.yaml b/include/automations/julelys.yaml index ac2ca24..5084d98 100644 --- a/include/automations/julelys.yaml +++ b/include/automations/julelys.yaml @@ -10,6 +10,8 @@ - condition: state # from sunset until sunrise entity_id: sun.sun state: 'below_horizon' + - condition: template # Vintersæson uge 42-8 + value_template: "{{ now().isocalendar()[1] >= 42 or now().isocalendar()[1] <= 8 }}" action: - service: light.turn_on data: @@ -19,6 +21,9 @@ trigger: platform: sun event: sunrise + condition: + - condition: template # Vintersæson uge 42-8 + value_template: "{{ now().isocalendar()[1] >= 42 or now().isocalendar()[1] <= 8 }}" action: - service: light.turn_off data: @@ -31,6 +36,8 @@ condition: - condition: time before: '21:30:00' + - condition: template # Vintersæson uge 42-8 + value_template: "{{ now().isocalendar()[1] >= 42 or now().isocalendar()[1] <= 8 }}" action: - service: light.turn_on data: @@ -40,6 +47,9 @@ trigger: platform: time at: "22:00:00" + condition: + - condition: template # Vintersæson uge 42-8 + value_template: "{{ now().isocalendar()[1] >= 42 or now().isocalendar()[1] <= 8 }}" action: - service: light.turn_off data: