2021-08-24 13:08:35 +02:00
|
|
|
# Configure a default setup of Home Assistant (frontend, api, etc)
|
|
|
|
default_config:
|
|
|
|
|
|
|
|
# Enable SSL/TLS
|
|
|
|
http:
|
|
|
|
server_port: 443
|
|
|
|
ssl_certificate: /ssl/fullchain.pem
|
|
|
|
ssl_key: /ssl/privkey.pem
|
|
|
|
|
|
|
|
# Text to speech
|
|
|
|
tts:
|
2021-09-10 21:40:07 +02:00
|
|
|
- platform: picotts_remote
|
|
|
|
language: "de-DE"
|
2022-09-01 13:50:41 +02:00
|
|
|
- platform: google_translate
|
|
|
|
language: "de"
|
2021-08-24 13:08:35 +02:00
|
|
|
|
|
|
|
# Include modules
|
|
|
|
group: !include groups.yaml
|
|
|
|
automation: !include automations.yaml
|
|
|
|
automation webhooks: !include automations_webhooks.yaml
|
|
|
|
script: !include scripts.yaml
|
|
|
|
scene: !include scenes.yaml
|
|
|
|
|
|
|
|
# Enable additional integrations
|
|
|
|
# Enable 'wake_on_lan' intrgration
|
|
|
|
wake_on_lan:
|
|
|
|
|
|
|
|
# Enable customizations
|
|
|
|
homeassistant:
|
|
|
|
customize: !include customize.yaml
|
|
|
|
|
|
|
|
# Additional sensors
|
|
|
|
sensor: !include sensors.yaml
|
2023-06-09 12:14:24 +02:00
|
|
|
command_line: !include commandline.yaml
|
2022-12-17 21:41:13 +01:00
|
|
|
utility_meter: !include utility_meters.yaml
|
2021-08-24 13:08:35 +02:00
|
|
|
|
2022-09-07 22:25:25 +02:00
|
|
|
# MQTT sensors
|
|
|
|
mqtt: !include mqtt.yaml
|
|
|
|
|
2021-08-24 13:08:35 +02:00
|
|
|
# Template sensors
|
2023-06-25 22:41:46 +02:00
|
|
|
template: !include template.yaml
|
2021-08-24 13:08:35 +02:00
|
|
|
|
|
|
|
# calendar integration
|
|
|
|
calendar: !include calendars.yaml
|
2023-12-14 22:15:21 +01:00
|
|
|
ics_calendar: !include ics_calendars.yaml
|
2021-08-24 13:08:35 +02:00
|
|
|
|
|
|
|
# DB-recorder configuration
|
|
|
|
recorder: !include recorder.yaml
|
2021-09-08 21:26:09 +02:00
|
|
|
|
2022-05-22 20:02:27 +02:00
|
|
|
# Home Assistant InfluxDB integration
|
|
|
|
influxdb:
|
|
|
|
host: a0d7b954-influxdb
|
|
|
|
port: 8086
|
|
|
|
database: homeassistant
|
|
|
|
username: homeassistant
|
|
|
|
password: !secret influx_pass
|
|
|
|
max_retries: 3
|
|
|
|
default_measurement: state
|
|
|
|
|
2022-09-01 13:50:41 +02:00
|
|
|
# Enable Bluetooth
|
|
|
|
bluetooth:
|
|
|
|
|
2021-09-08 21:26:09 +02:00
|
|
|
# Bluetooth Low Energy tracker
|
|
|
|
device_tracker:
|
|
|
|
- platform: bluetooth_le_tracker
|
2022-12-17 21:41:13 +01:00
|
|
|
track_new_devices: true
|
2021-09-08 21:28:58 +02:00
|
|
|
|
|
|
|
# Configure MPD addon as media player
|
|
|
|
media_player:
|
|
|
|
platform: mpd
|
|
|
|
host: 192.168.122.48
|
|
|
|
scan_interval: 1
|
2022-03-28 18:54:17 +02:00
|
|
|
|
|
|
|
generic_hygrostat:
|
|
|
|
- name: Badezimmer
|
2022-04-11 09:33:14 +02:00
|
|
|
humidifier: fan.badezimmer_ventilator
|
2024-01-17 11:50:02 +01:00
|
|
|
target_sensor: sensor.bathroom_badezimmer_luftfeuchtigkeit
|
2022-03-28 18:54:17 +02:00
|
|
|
min_humidity: 30
|
|
|
|
max_humidity: 70
|
|
|
|
target_humidity: 50
|
|
|
|
dry_tolerance: 3
|
|
|
|
wet_tolerance: 3
|
|
|
|
device_class: "dehumidifier"
|
|
|
|
min_cycle_duration:
|
2022-04-08 18:12:45 +02:00
|
|
|
seconds: 60
|
2022-03-28 18:54:17 +02:00
|
|
|
# keep_alive:
|
|
|
|
# minutes: 3
|
|
|
|
initial_state: true
|
2022-03-28 20:25:15 +02:00
|
|
|
away_humidity: 60
|
|
|
|
away_fixed: true
|
2022-03-28 18:54:17 +02:00
|
|
|
sensor_stale_duration: 00:15:00
|
2022-09-01 13:50:41 +02:00
|
|
|
|