This commit is contained in:
darthsandmann
2022-08-30 18:42:25 +02:00
parent 79919e5857
commit 853c1d1716
73 changed files with 3902 additions and 1210 deletions

1
packages/homeassistant/default_theme.yaml Normal file → Executable file
View File

@ -5,7 +5,6 @@ automation:
trigger:
- event: start
platform: homeassistant
condition: []
action:
- data:
name: minimalist-desktop

37
packages/homeassistant/homeassistant.yaml Normal file → Executable file
View File

@ -8,6 +8,41 @@ homeassistant:
time_zone: Europe/Berlin
allowlist_external_dirs:
- '/tmp'
auth_providers:
- type: trusted_networks
trusted_networks:
- 10.10.10.0/24
default_config:
lovelace:
mode: yaml
resources: !include ../../resources.yaml
http:
use_x_forwarded_for: true
trusted_proxies:
- 127.0.0.1
- ::1
- 10.10.10.0/24
- 172.30.32.0/24
- 172.30.33.0/24
#default_config:
automation:
counter:
dhcp:
energy:
frontend:
history:
map:
mobile_app:
person:
ssdp:
system_health:
timer:
usb:
webhook:
zeroconf:
zone:

View File

@ -0,0 +1,46 @@
homekit:
ip_address: 10.10.10.1
advertise_ip: 10.10.10.1
filter:
include_entities:
- sensor.temperature_kai_humidity
- sensor.temperature_kai_temperature
- light.all_indirect
- light.all_direct
- script.light_store_off
- script.light_store_restore
- scene.light_flux
- scene.light_night
- switch.adaptive_lighting_sleep_mode_default
- switch.adaptive_lighting_default
- switch.server
- switch.server_template
- scene.light_adaptive
entity_config:
sensor.temperature_kai_humidity:
name: Feuchtigkeit
sensor.temperature_kai_temperature:
name: Temperatur
light.all_indirect:
name: Indirekt
light.all_direct:
name: Direkt
script.light_store_off:
name: Licht aus
script.light_store_restore:
name: Licht an
scene.light_adaptive:
name: Licht Adaptiv
scene.light_night:
name: Licht Nacht
switch.adaptive_lighting_default:
name: Adaptiv
switch.adaptive_lighting_sleep_mode_default:
name: Schlaf
switch.server:
name: Server
switch.server_template:
name: Server Status

View File

@ -0,0 +1,12 @@
logbook:
exclude:
entities:
- automation.light_all_snapshot
- automation.climate_weekend
- automation.climate_weekday
entity_globs:
- sensor.pfsense_*
- binary_sensor.pfsense_*
- script.climate_set_*
- sensor.home_*
- sensor.openweathermap_*

View File

@ -1,27 +0,0 @@
lovelace:
mode: yaml
resources:
- url: /hacsfiles/button-card/button-card.js
type: module
- url: /hacsfiles/light-entity-card/light-entity-card.js
type: module
- url: /hacsfiles/lovelace-auto-entities/auto-entities.js
type: module
- url: /hacsfiles/lovelace-card-mod/card-mod.js
type: module
- url: /hacsfiles/mini-graph-card/mini-graph-card-bundle.js
type: module
- url: /hacsfiles/mini-media-player/mini-media-player-bundle.js
type: module
- url: /hacsfiles/my-cards/my-slider.js
type: module
- url: /hacsfiles/simple-weather-card/simple-weather-card-bundle.js
type: module
- url: /hacsfiles/home-assistant-sun-card/home-assistant-sun-card.js
type: module
- url: /hacsfiles/lovelace-layout-card/layout-card.js
type: module
- url: /hacsfiles/lovelace-state-switch/state-switch.js
type: module

View File

@ -0,0 +1,15 @@
script:
summary_notification:
sequence:
- service: notify.notify
data:
message: >
{% set maxTemp = states("sensor.temperature_today") %}
{% set condition = states("sensor.temperature_today_condition") %}
{% set currentTemp = states("sensor.temperature_outside") %}
{% set recommendation = states("sensor.climate_temp_recommendation") %}
{% set insideTemp = states("sensor.temperature_kai_temperature") %}
At the moment it is {{ condition }} outside with a temperature of {{ currentTemp }}°C.
Todays max temperature will be {{ maxTemp }}°C.
It is {{ insideTemp }}°C inside and recommended to {{ recommendation }}.
mode: single

0
packages/homeassistant/recorder.yaml Normal file → Executable file
View File

View File

@ -0,0 +1,8 @@
## -----------------------------------------------------------------------------------------------##
## Time / Date
## -----------------------------------------------------------------------------------------------##
sensor:
- platform: time_date
display_options:
- 'time'
- 'date'