updates
This commit is contained in:
1
packages/homeassistant/default_theme.yaml
Normal file → Executable file
1
packages/homeassistant/default_theme.yaml
Normal file → Executable 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
37
packages/homeassistant/homeassistant.yaml
Normal file → Executable 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:
|
46
packages/homeassistant/homekit.yaml
Executable file
46
packages/homeassistant/homekit.yaml
Executable 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
|
12
packages/homeassistant/logbook.yaml
Executable file
12
packages/homeassistant/logbook.yaml
Executable 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_*
|
@ -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
|
||||
|
15
packages/homeassistant/notification_summary.yaml
Executable file
15
packages/homeassistant/notification_summary.yaml
Executable 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
0
packages/homeassistant/recorder.yaml
Normal file → Executable file
8
packages/homeassistant/time_date.yaml
Executable file
8
packages/homeassistant/time_date.yaml
Executable file
@ -0,0 +1,8 @@
|
||||
## -----------------------------------------------------------------------------------------------##
|
||||
## Time / Date
|
||||
## -----------------------------------------------------------------------------------------------##
|
||||
sensor:
|
||||
- platform: time_date
|
||||
display_options:
|
||||
- 'time'
|
||||
- 'date'
|
Reference in New Issue
Block a user