Julelys kun i vintersæson uge 42-8, tilføj TODO liste

This commit is contained in:
2026-05-06 07:35:07 +02:00
parent 1525cc0070
commit bee2028f0b
2 changed files with 23 additions and 0 deletions
+13
View File
@@ -1,5 +1,18 @@
# TODO - Pending Tasks # 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 ## Gitea External HTTPS Access
**Status:** Partial - content accessible but SSL certificate warning **Status:** Partial - content accessible but SSL certificate warning
+10
View File
@@ -10,6 +10,8 @@
- condition: state # from sunset until sunrise - condition: state # from sunset until sunrise
entity_id: sun.sun entity_id: sun.sun
state: 'below_horizon' state: 'below_horizon'
- condition: template # Vintersæson uge 42-8
value_template: "{{ now().isocalendar()[1] >= 42 or now().isocalendar()[1] <= 8 }}"
action: action:
- service: light.turn_on - service: light.turn_on
data: data:
@@ -19,6 +21,9 @@
trigger: trigger:
platform: sun platform: sun
event: sunrise event: sunrise
condition:
- condition: template # Vintersæson uge 42-8
value_template: "{{ now().isocalendar()[1] >= 42 or now().isocalendar()[1] <= 8 }}"
action: action:
- service: light.turn_off - service: light.turn_off
data: data:
@@ -31,6 +36,8 @@
condition: condition:
- condition: time - condition: time
before: '21:30:00' before: '21:30:00'
- condition: template # Vintersæson uge 42-8
value_template: "{{ now().isocalendar()[1] >= 42 or now().isocalendar()[1] <= 8 }}"
action: action:
- service: light.turn_on - service: light.turn_on
data: data:
@@ -40,6 +47,9 @@
trigger: trigger:
platform: time platform: time
at: "22:00:00" at: "22:00:00"
condition:
- condition: template # Vintersæson uge 42-8
value_template: "{{ now().isocalendar()[1] >= 42 or now().isocalendar()[1] <= 8 }}"
action: action:
- service: light.turn_off - service: light.turn_off
data: data: