Files
home-assistant-config/configuration.yaml
T
fkrebs b0b23b14f1 feat(helpers): migrate UI helpers to YAML (Phase 1)
Migriert von .storage/ nach helpers/*.yaml:
- helpers/input_boolean.yaml  (3 helpers)
- helpers/input_button.yaml   (1: nachtmodus)
- helpers/input_datetime.yaml (4: grow_startdatum + 3x whirlpool)
- helpers/timer.yaml          (1: timer_badezimmer_heizung)

Die 3 Whirlpool-Datetime-Helper waren bereits inline in
configuration.yaml — wurden zusammen mit grow_startdatum nach
helpers/input_datetime.yaml verschoben.

object_ids exakt erhalten — keine Brüche in Automatisierungen
oder Dashboards zu erwarten.

Phase 1 = parallel zu UI-Helpern. ha core check exit 0.
Phase 2 (UI-Helper aus .storage entfernen) folgt nach
explizitem Go.

NICHT migriert:
- schedule (whirlpool_heizung) — Integration ist UI-only,
  keine YAML-Konfiguration unterstützt.
- input_select/input_text/counter — keine UI-Helper vorhanden.
2026-05-02 14:36:19 +02:00

30 lines
714 B
YAML

# Loads default set of integrations. Do not remove.
default_config:
# Load frontend themes from the themes folder
frontend:
themes: !include_dir_merge_named themes
automation: !include automations.yaml
script: !include scripts.yaml
scene: !include scenes.yaml
http:
use_x_forwarded_for: true
trusted_proxies:
- 192.168.1.0/24
powercalc:
# monitor_docker:
# - name: Docker
# url: http://192.168.1.40:2375
recorder:
purge_keep_days: 21
# Helper (von UI nach YAML migriert — siehe helpers/)
input_boolean: !include helpers/input_boolean.yaml
input_button: !include helpers/input_button.yaml
input_datetime: !include helpers/input_datetime.yaml
timer: !include helpers/timer.yaml