Files
hass/configuration.yaml
Ben Melchior ea1eb9e6fa Enhance automations and configuration with new features and improvements
- Added new media player entity for doorbell notifications in automations.yaml.
- Refactored automation sequences to include conditional actions based on triggers for sleep mode and KidsRoom.
- Updated light and cover actions to improve functionality and responsiveness.
- Introduced new scripts for critical notifications and smart shading management in scripts.yaml.
- Added new KNX sensors for temperature, wind speed, and illuminance in sensor.yaml.
- Created new packages for mobile dashboard and PV to DHW management to streamline automation processes.
2025-09-01 11:54:19 +02:00

50 lines
1.2 KiB
YAML

# Loads default set of integrations. Do not remove.
default_config:
http:
server_port: 443
ssl_certificate: /ssl/fullchain.pem
ssl_key: /ssl/privkey.pem
recorder:
db_url: !secret psql_string
db_retry_wait: 15 # Wait 15 seconds before retrying
exclude:
domains:
- automation
- updater
entity_globs:
- sensor.weather_*
entities:
- sun.sun # Don't record sun data
- sensor.last_boot # Comes from 'systemmonitor' sensor platform
- sensor.date
event_types:
- call_service # Don't record service calls
# Load frontend themes from the themes folder
frontend:
themes: !include_dir_merge_named themes
# Include packages
homeassistant:
packages: !include_dir_named packages
template: !include template/binary_sensor.yaml
automation: !include automations.yaml
script: !include scripts.yaml
scene: !include scenes.yaml
knx: !include knx/knx.yaml
# Storage for Bubble Card Modules
template:
- trigger:
- trigger: event
event_type: bubble_card_update_modules
sensor:
- name: "Bubble Card Modules"
state: "saved"
icon: "mdi:puzzle"
attributes:
modules: "{{ trigger.event.data.modules }}"
last_updated: "{{ trigger.event.data.last_updated }}"