first commit

This commit is contained in:
root
2025-12-27 09:13:04 +01:00
commit 7c7d730799
27 changed files with 7050 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#!/bin/sh
curl --request PUT \
--url https://developer-api.govee.com/v1/appliance/devices/control \
--header 'Govee-API-Key: aaecbef1-57f8-44e6-9ded-f05cbc840c10' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '
{
"device": "2E:98:D4:AD:FC:85:C8:C1",
"model": "H7140",
"cmd": {
"name": "gear",
"value": 1
}
}
'
+16
View File
@@ -0,0 +1,16 @@
#!/bin/bash
curl --request PUT \
--url https://developer-api.govee.com/v1/appliance/devices/control \
--header 'Govee-API-Key: aaecbef1-57f8-44e6-9ded-f05cbc840c10' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '
{
"device": "2E:98:D4:AD:FC:85:C8:C1",
"model": "H7140",
"cmd": {
"name": "gear",
"value": 4
}
}
'
+16
View File
@@ -0,0 +1,16 @@
#!/bin/bash
curl --request PUT \
--url https://developer-api.govee.com/v1/appliance/devices/control \
--header 'Govee-API-Key: aaecbef1-57f8-44e6-9ded-f05cbc840c10' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '
{
"device": "2E:98:D4:AD:FC:85:C8:C1",
"model": "H7140",
"cmd": {
"name": "gear",
"value": 8
}
}
'
+17
View File
@@ -0,0 +1,17 @@
#!/bin/sh
curl --request PUT \
--url https://developer-api.govee.com/v1/appliance/devices/control \
--header 'Govee-API-Key: aaecbef1-57f8-44e6-9ded-f05cbc840c10' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '
{
"device": "2C:3C:D4:AD:FC:85:ED:84",
"model": "H7140",
"cmd": {
"name": "gear",
"value": 1
}
}
'
+16
View File
@@ -0,0 +1,16 @@
#!/bin/bash
curl --request PUT \
--url https://developer-api.govee.com/v1/appliance/devices/control \
--header 'Govee-API-Key: aaecbef1-57f8-44e6-9ded-f05cbc840c10' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '
{
"device": "2C:3C:D4:AD:FC:85:ED:84",
"model": "H7140",
"cmd": {
"name": "gear",
"value": 4
}
}
'
+16
View File
@@ -0,0 +1,16 @@
#!/bin/bash
curl --request PUT \
--url https://developer-api.govee.com/v1/appliance/devices/control \
--header 'Govee-API-Key: aaecbef1-57f8-44e6-9ded-f05cbc840c10' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '
{
"device": "2C:3C:D4:AD:FC:85:ED:84",
"model": "H7140",
"cmd": {
"name": "gear",
"value": 8
}
}
'
+78
View File
@@ -0,0 +1,78 @@
#!/bin/sh
wohnzimmer='Wohnzimmer'
greta='Greta'
charlotte='Charlotte'
schlafzimmer='Schlafzimmer'
if [ $1 = $wohnzimmer ]
then
curl --request PUT \
--url https://developer-api.govee.com/v1/appliance/devices/control \
--header 'Govee-API-Key: aaecbef1-57f8-44e6-9ded-f05cbc840c10' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '
{
"device": "18:3C:D4:AD:FC:85:FC:1A",
"model": "H7140",
"cmd": {
"name": "turn",
"value": "off"
}
}
'
elif [ $1 = $schlafzimmer ]
then
curl --request PUT \
--url https://developer-api.govee.com/v1/appliance/devices/control \
--header 'Govee-API-Key: aaecbef1-57f8-44e6-9ded-f05cbc840c10' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '
{
"device": "2E:95:D4:AD:FC:86:9E:7F",
"model": "H7140",
"cmd": {
"name": "turn",
"value": "off"
}
}
'
elif [ $1 = $greta ]
then
curl --request PUT \
--url https://developer-api.govee.com/v1/appliance/devices/control \
--header 'Govee-API-Key: aaecbef1-57f8-44e6-9ded-f05cbc840c10' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '
{
"device": "2C:3C:D4:AD:FC:85:ED:84",
"model": "H7140",
"cmd": {
"name": "turn",
"value": "off"
}
}
'
elif [ $1 = $charlotte ]
then
curl --request PUT \
--url https://developer-api.govee.com/v1/appliance/devices/control \
--header 'Govee-API-Key: aaecbef1-57f8-44e6-9ded-f05cbc840c10' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '
{
"device": "2E:98:D4:AD:FC:85:C8:C1",
"model": "H7140",
"cmd": {
"name": "turn",
"value": "off"
}
}
'
fi
+78
View File
@@ -0,0 +1,78 @@
#!/bin/sh
wohnzimmer='Wohnzimmer'
greta='Greta'
charlotte='Charlotte'
schlafzimmer='Schlafzimmer'
if [ $1 = $wohnzimmer ]
then
curl --request PUT \
--url https://developer-api.govee.com/v1/appliance/devices/control \
--header 'Govee-API-Key: aaecbef1-57f8-44e6-9ded-f05cbc840c10' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '
{
"device": "18:3C:D4:AD:FC:85:FC:1A",
"model": "H7140",
"cmd": {
"name": "turn",
"value": "on"
}
}
'
elif [ $1 = $schlafzimmer ]
then
curl --request PUT \
--url https://developer-api.govee.com/v1/appliance/devices/control \
--header 'Govee-API-Key: aaecbef1-57f8-44e6-9ded-f05cbc840c10' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '
{
"device": "2E:95:D4:AD:FC:86:9E:7F",
"model": "H7140",
"cmd": {
"name": "turn",
"value": "on"
}
}
'
elif [ $1 = $greta ]
then
curl --request PUT \
--url https://developer-api.govee.com/v1/appliance/devices/control \
--header 'Govee-API-Key: aaecbef1-57f8-44e6-9ded-f05cbc840c10' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '
{
"device": "2C:3C:D4:AD:FC:85:ED:84",
"model": "H7140",
"cmd": {
"name": "turn",
"value": "on"
}
}
'
elif [ $1 = $charlotte ]
then
curl --request PUT \
--url https://developer-api.govee.com/v1/appliance/devices/control \
--header 'Govee-API-Key: aaecbef1-57f8-44e6-9ded-f05cbc840c10' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '
{
"device": "2E:98:D4:AD:FC:85:C8:C1",
"model": "H7140",
"cmd": {
"name": "turn",
"value": "on"
}
}
'
fi
+78
View File
@@ -0,0 +1,78 @@
#!/bin/sh
wohnzimmer='Wohnzimmer'
greta='Greta'
charlotte='Charlotte'
schlafzimmer='Schlafzimmer'
if [ $1 = $wohnzimmer ]
then
curl --request PUT \
--url https://developer-api.govee.com/v1/appliance/devices/control \
--header 'Govee-API-Key: aaecbef1-57f8-44e6-9ded-f05cbc840c10' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '
{
"device": "18:3C:D4:AD:FC:85:FC:1A",
"model": "H7140",
"cmd": {
"name": "on",
"value": "1"
}
}
'
elif [ $1 = $schlafzimmer ]
then
curl --request PUT \
--url https://developer-api.govee.com/v1/appliance/devices/control \
--header 'Govee-API-Key: aaecbef1-57f8-44e6-9ded-f05cbc840c10' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '
{
"device": "2E:95:D4:AD:FC:86:9E:7F",
"model": "H7140",
"cmd": {
"name": "nightlightToggle",
"value": "on"
}
}
'
elif [ $1 = $greta ]
then
curl --request PUT \
--url https://developer-api.govee.com/v1/appliance/devices/control \
--header 'Govee-API-Key: aaecbef1-57f8-44e6-9ded-f05cbc840c10' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '
{
"device": "2C:3C:D4:AD:FC:85:ED:84",
"model": "H7140",
"cmd": {
"name": "nightlightToggle",
"value": "on"
}
}
'
elif [ $1 = $charlotte ]
then
curl --request PUT \
--url https://developer-api.govee.com/v1/appliance/devices/control \
--header 'Govee-API-Key: aaecbef1-57f8-44e6-9ded-f05cbc840c10' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '
{
"device": "2E:98:D4:AD:FC:85:C8:C1",
"model": "H7140",
"cmd": {
"name": "nightlightToggle",
"value": "on"
}
}
'
fi
+17
View File
@@ -0,0 +1,17 @@
#!/bin/sh
curl --request PUT \
--url https://developer-api.govee.com/v1/appliance/devices/control \
--header 'Govee-API-Key: aaecbef1-57f8-44e6-9ded-f05cbc840c10' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '
{
"device": "2E:95:D4:AD:FC:86:9E:7F",
"model": "H7140",
"cmd": {
"name": "gear",
"value": 1
}
}
'
+16
View File
@@ -0,0 +1,16 @@
#!/bin/bash
curl --request PUT \
--url https://developer-api.govee.com/v1/appliance/devices/control \
--header 'Govee-API-Key: aaecbef1-57f8-44e6-9ded-f05cbc840c10' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '
{
"device": "2E:95:D4:AD:FC:86:9E:7F",
"model": "H7140",
"cmd": {
"name": "gear",
"value": 4
}
}
'
+16
View File
@@ -0,0 +1,16 @@
#!/bin/bash
curl --request PUT \
--url https://developer-api.govee.com/v1/appliance/devices/control \
--header 'Govee-API-Key: aaecbef1-57f8-44e6-9ded-f05cbc840c10' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '
{
"device": "2E:95:D4:AD:FC:86:9E:7F",
"model": "H7140",
"cmd": {
"name": "gear",
"value": 8
}
}
'
+17
View File
@@ -0,0 +1,17 @@
#!/bin/sh
curl --request PUT \
--url https://developer-api.govee.com/v1/appliance/devices/control \
--header 'Govee-API-Key: aaecbef1-57f8-44e6-9ded-f05cbc840c10' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '
{
"device": "18:3C:D4:AD:FC:85:FC:1A",
"model": "H7140",
"cmd": {
"name": "gear",
"value": 1
}
}
'
+16
View File
@@ -0,0 +1,16 @@
#!/bin/bash
curl --request PUT \
--url https://developer-api.govee.com/v1/appliance/devices/control \
--header 'Govee-API-Key: aaecbef1-57f8-44e6-9ded-f05cbc840c10' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '
{
"device": "18:3C:D4:AD:FC:85:FC:1A",
"model": "H7140",
"cmd": {
"name": "gear",
"value": 4
}
}
'
+16
View File
@@ -0,0 +1,16 @@
#!/bin/bash
curl --request PUT \
--url https://developer-api.govee.com/v1/appliance/devices/control \
--header 'Govee-API-Key: aaecbef1-57f8-44e6-9ded-f05cbc840c10' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '
{
"device": "18:3C:D4:AD:FC:85:FC:1A",
"model": "H7140",
"cmd": {
"name": "gear",
"value": 8
}
}
'
+4
View File
@@ -0,0 +1,4 @@
## Home Assistant
- Konfigurationsdateien
+4981
View File
File diff suppressed because it is too large Load Diff
+534
View File
@@ -0,0 +1,534 @@
# 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
homeassistant:
customize: !include customize.yaml
auth_mfa_modules:
- type: totp
api:
#---------------------------------------------
####### Systemeinstellungen #######
#---------------------------------------------
recorder: !include recorder.yaml
#influxdb: !include influxdb.yaml
logger: !include logger.yaml
history:
prometheus: !include prometheus.yaml
influxdb: !include influxdb.yaml
#---------------------------------------------
####### Inaktive Integrationen #######
#---------------------------------------------
#ffmpeg:
#---------------------------------------------
####### Gotify und Webhook #######
#---------------------------------------------
notify:
- name: "Gotify"
platform: gotify
url: http://192.168.178.183:9085
token: AI_Iq09hVaRF_P0
# - platform: rest
# name: ntfy
# resource: https://ntfy-app.hanold.online
# method: POST
# headers:
# Authorization: cNTc7XU2nYsKXH
# Priority: "{{ priority_default|default('3') }}"
# Title: "{{ title_default|default('Home Assistant') }}"
# Tags: "{{ tags_default|default('bell') }}"
# message_param_name: message
#-------------------------------------------
http:
use_x_forwarded_for: true
ip_ban_enabled: false
trusted_proxies:
- 192.168.178.0/24
- 127.0.0.1
- 172.30.33.0/24
#-------------------------------------------
#------------------------------------------
####### Templates #####
#------------------------------------------
template:
- sensor:
# Nachkommastellen in der elektrischen Reichweite entfernen
- name: "Electric Range ohne Nachkommastellen"
state: "{{ states('sensor.id_4_electric_range') | float | int }}"
unit_of_measurement: "km"
# Ladezeit in Stunden und Minuten aufteilen
- name: "id.4 Ladezeit Stunden"
icon: mdi:clock
unit_of_measurement: "h"
state: "{{ (states('sensor.id_4_charging_time_left') | int // 60) }}"
- name: "id.4 Ladezeit Minuten"
icon: mdi:clock
unit_of_measurement: "min"
state: "{{ (states('sensor.id_4_charging_time_left') | int % 60) }}"
#-------------------------------------------
####### Aktive Integrationen #######
#-------------------------------------------
# ZHA Einstellungen
zha:
zigpy_config:
ota:
otau_directory: /config/zigpy_ota/
# z2m_remote_index: https://raw.githubusercontent.com/Koenkk/zigbee-OTA/master/index.json
providers:
- type: ikea
- type: sonoff
extra-providers:
- type: zigpy # The `zigpy` provider type requires a URL that points to an OTA index file
url: https://raw.githubusercontent.com/Koenkk/zigbee-OTA/master/index.json
innr_provider: true
# enable_quirks: true
# custom_quirks_path: /config/zigpy_quirks/
device_config:
# Heizlüfter
2d:49:05:60:2b:d5:b3:70-1:
type: "switch"
70:b3:d5:2b:60:07:83:bd-1:
type: "switch"
# Panel Custom
panel_custom:
- name: panel_automations
sidebar_title: 'Automatisierungen'
sidebar_icon: mdi:restart
url_path: 'config/automation/dashboard'
module_url: /api/hassio/app/entrypoint.js
embed_iframe: true
require_admin: true
- name: panel_integrations
sidebar_title: 'Integrationen'
sidebar_icon: mdi:all-inclusive-box-outline
url_path: 'config/integrations/dashboard'
module_url: /api/hassio/app/entrypoint.js
embed_iframe: true
require_admin: true
- name: addons
sidebar_title: Addons
sidebar_icon: mdi:cog-transfer
js_url: /api/hassio/app/entrypoint.js
url_path: "hassio/dashboard"
embed_iframe: true
require_admin: true
config:
ingress: core_configurator
- name: logs
sidebar_title: Logs
sidebar_icon: mdi:post
js_url: /api/hassio/app/entrypoint.js
url_path: "config/logs"
embed_iframe: true
require_admin: true
config:
ingress: core_configurator
# Adaptive Lighting
# Die Außenlampen habe ich rausgenommen, weil die dann zu hell werden
adaptive_lighting:
name: "Standard"
max_brightness: 90
min_brightness: 5
max_color_temp: 4750
lights:
# Büro
- light.burolampe_licht
# Flur
- light.bambus_licht
- light.treppe_licht
- light.empore
- light.deckenlampen_flur
# Charlotte
- light.deckenlampe_charlotte_licht
- light.blume_licht
- light.mond_licht
- light.charlotte_mond_und_blume
- light.smart_rgb_bulb_2304040739043352050248e1e9c33fdb_none #schreibtisch
# Greta
- light.greta_kafer_und_blume
- light.ikea_of_sweden_tradfri_bulb_e14_ws_opal_400lm_licht #Greta Blume
- light.deckenlampe_greta_licht
- light.kafer_licht
- light.schreibtischlampe_licht
# Wohnzimmer
- light.esstisch_licht
- light.leselampe_licht
- light.deckenlampe_wohnzimmer
# Küche
- light.kuchenlampe_licht
- light.speisekammer_licht
# Bad
- light.hemnes_licht #Bad
- light.bad_ventilator_licht
- light.badspiegel_licht
- light.deckenlampe_licht #Bad
- light.dusche_licht
# Schlafzimmer
- light.deckenlampe
- light.nachttisch_sarah
- light.nachttisch_sven
- light.bett_licht
# Gästebad
- light.deckenlampe_gastebad_licht
# HomeKit
homekit:
- name: "Zigbee HomeKit Bridge"
filter:
include_entities:
# Flur
- light.bambus_licht
- light.treppe_licht
- light.empore
- light.deckenlampen_flur
- climate.empore
- climate.flur
- switch.lichtschalter_dachboden_switch_0
- binary_sensor.tursensor_haustur_offnung
# Garten
- light.terrassenlampen
- light.vordertur
- cover.maestria_io_links
- cover.maestria_io_mitte
- cover.maestria_io_rechts
# Küche
- light.speisekammer_licht
- light.arbeitsplatte
- light.kuchenlampe_licht
- climate.kuche
- climate.speisekammer
- switch.steckdose_dashboard_schalter_2 #Dashboard
- binary_sensor.ewelink_snzb_04_offnung
# Büro
- light.burolampe_licht
- switch.steckdose_computer_schalter
- switch.lichtschalter_buro_switch_0
- climate.buro
- binary_sensor.fenstersensor_buro_offnet
# Schlafzimmer
- light.nachttisch_sarah
- light.nachttisch_sven
- light.nachttisch
- light.deckenlampe
- light.bett_licht
- input_boolean.luftbefeuchter_schlafzimmer
- input_boolean.deckenventilator_schlafzimmer
- climate.schlafzimmer
- binary_sensor.fenstersensor_lichtband_offnet
- binary_sensor.fenstersensor_fenster_offnung
# Charlotte
- light.deckenlampe_charlotte_licht
- light.charlotte_mond_und_blume
- input_boolean.luftbefeuchter_charlotte
- climate.charlotte
- cover.smart_roller_shutter_2211016207868970080148e1e9aeb29d_shutter #Charlotte Bodentief
- cover.smart_roller_shutter_2211013226379970080248e1e9aed63f_shutter #Charlotte Fenster
- binary_sensor.fenstersensor_bodentiet_offnung
- binary_sensor.fenstersensor_bett_offnung
- light.schreibtischlampe_charlotte_licht
# Greta
- light.greta_kafer_und_blume
- light.schreibtischlampe_licht
- light.deckenlampe_greta_licht
- input_boolean.luftbefeuchter_greta
- climate.greta
- cover.smart_roller_shutter_2211013029100770080248e1e9aed618_shutter #Greta Bodentief
- cover.smart_roller_shutter_2211016056184270080248e1e9aeca39_shutter #Greta Fenster
- binary_sensor.greta_bett_offnung
- binary_sensor.fenstersensor_bodentief_offnung
- switch.lavalampe_greta_schalter
# Bad
- light.bad_ventilator_licht
- light.dusche_licht
- light.badspiegel_licht
- light.hemnes_licht
- light.deckenlampe_licht
- climate.bad
- binary_sensor.fenstersensor_bad_offnet
- binary_sensor.tursensor_bad_offnung
- switch.steckdose_heizlufter
# Wohnzimmer
- light.lowboard_licht
- light.iris_licht
- light.leselampe_licht
- light.deckenlampe_wohnzimmer
- light.esstisch_licht
- light.eckbank_licht_2
- light.hochkommode_licht_2
- light.kamin_licht_2
- light.tischlampe_licht_2
- light.treibholzlampe_leuchte #Treibholzlampe
- light.65oled805_12_ambilight
- light.twinkly_christbaum #Christbaum
- input_boolean.luftbefeuchter_wohnzimmer
- climate.wohnzimmer
- scene.wohnzimmer_abend
- scene.wohnzimmer_hell
- cover.smart_roller_shutter_2303224120884470080248e1e9c1d0a6_shutter #Bodentief
- cover.smart_roller_shutter_2303225934207570080248e1e9c1d829_shutter #Lichtband Esstisch
- cover.smart_roller_shutter_2303223271354370080248e1e9c1e29b_shutter #Lichtband Garage
- cover.smart_roller_shutter_2303220444283070080248e1e9c1d0c1_shutter #Lichtband Garten
- binary_sensor.fenstersensor_terrasse_links_offnet
- binary_sensor.fenstersensor_terrasse_rechts_offnet
- binary_sensor.fenstersensor_lichtband_garage_offnung
# Technikraum
# Garage
# Auto
- climate.id_4_electric_climatisation
# Gästebad
- light.deckenlampe_gastebad_licht
- binary_sensor.tursensor_offnet
- binary_sensor.fenstersensor_gastebad_offnung
- climate.gastebad
entity_config:
light.speisekammer_licht:
name: Speisekammer
switch.lichtschalter_schlafzimmer_switch_0:
type: switch
name: Deckenlampe Schlafzimmer
switch.computer_schalter:
type: outlet
switch.lichtschalter_buro_switch_0:
type: switch
name: Deckenlampe Büro
switch.lichtschalter_dachboden_switch_0:
type: switch
name: Dachboden
switch.steckdose_garage_schalter:
type: outlet
name: Steckdose Garage
switch.steckdose_dashboard_schalter_2:
type: outlet
#-----------------------------------
####### Scripte #######
#-----------------------------------
# Luftbefeuchter steuern
shell_command:
humidifier_wohnzimmer_1: 'sh Luftbefeuchter/wz1.sh'
humidifier_wohnzimmer_4: 'sh Luftbefeuchter/wz4.sh'
# humidifier_wohnzimmer_8: 'sh Luftbefeuchter/wz8.sh'
humidifier_greta_1: 'sh Luftbefeuchter/gr1.sh'
humidifier_greta_4: 'sh Luftbefeuchter/gr4.sh'
# humidifier_greta_8: 'sh Luftbefeuchter/gr8.sh'
humidifier_charlotte_1: 'sh Luftbefeuchter/ch1.sh'
humidifier_charlotte_4: 'sh Luftbefeuchter/ch4.sh'
# humidifier_charlotte_8: 'sh Luftbefeuchter/ch8.sh'
humidifier_schlafzimmer_1: 'sh Luftbefeuchter/sz1.sh'
humidifier_schlafzimmer_4: 'sh Luftbefeuchter/sz4.sh'
# humidifier_schlafzimmer_8: 'sh Luftbefeuchter/sz8.sh'
humidifier_wohnzimmer_on: 'sh Luftbefeuchter/luftbefeuchter.on.sh Wohnzimmer'
humidifier_charlotte_on: 'sh Luftbefeuchter/luftbefeuchter.on.sh Charlotte'
humidifier_schlafzimmer_on: 'sh Luftbefeuchter/luftbefeuchter.on.sh Schlafzimmer'
humidifier_greta_on: 'sh Luftbefeuchter/luftbefeuchter.on.sh Greta'
humidifier_wohnzimmer_off: 'sh Luftbefeuchter/luftbefeuchter.off.sh Wohnzimmer'
humidifier_charlotte_off: 'sh Luftbefeuchter/luftbefeuchter.off.sh Charlotte'
humidifier_schlafzimmer_off: 'sh Luftbefeuchter/luftbefeuchter.off.sh Schlafzimmer'
humidifier_greta_off: 'sh Luftbefeuchter/luftbefeuchter.off.sh Greta'
#-----------------------------------
####### Kalender #######
#-----------------------------------
calendar:
- platform: caldav
url: https://caldav.icloud.com
username: svenhanold@me.com
password: wwnw-smro-tyhm-yiqf
calendars:
- Family
- Sven
counter:
zaehler_rollo_kueche:
name: "Prozent Rollo Küche"
initial: 0
step: 8
climate:
- platform: generic_thermostat
name: Garten
heater: switch.dummy_for_climate_entity #Sonst geht die Entity nicht
target_sensor: sensor.netatmo_aussenmodul_temperatur
camera:
- platform: xiaomi_cloud_map_extractor
host: 192.168.178.246
token: 4f45594547593339624e6e394466475a
username: 8294463040
password: baRecM3ElOQNZaiV
country: de
draw: ['all']
#-----------------------------------
####### Sensoren #######
#-----------------------------------
#Zählerstände
sensor:
- platform: rest
resource: http://192.168.178.138:8081
value_template: >
{% for i in value_json.data %}
{% if i.uuid == "8d3353b0-1140-11ef-a931-df6ccd247a20" %}
{{ '%.2f'%(i.tuples[0][1]) | float }}
{% endif %}
{% endfor %}
method: GET
name: "zaehler_verbrauch"
unit_of_measurement: kWh
device_class: energy
state_class: total_increasing
- platform: rest
resource: http://192.168.178.138:8081
value_template: >
{% for i in value_json.data %}
{% if i.uuid == "480f7900-1140-11ef-b2bb-dd3e03d1aa11" %}
{{ '%.2f'%(i.tuples[0][1]) | float }}
{% endif %}
{% endfor %}
method: GET
name: "zaehler_einspeisung"
unit_of_measurement: kWh
device_class: energy
state_class: total_increasing
- platform: rest
resource: http://192.168.178.193:8081
value_template: >
{% for i in value_json.data %}
{% if i.uuid == "11c31170-16c8-11f0-9c6e-03bc4e30373d" %}
{{ '%.2f'%(i.tuples[0][1]) | float }}
{% endif %}
{% endfor %}
method: GET
name: "zaehler_waermepumpe"
unit_of_measurement: Wh
device_class: energy
state_class: total_increasing
# Standard-VZ-Integration
- platform: volkszaehler
# uuid: "8d3353b0-1140-11ef-a931-df6ccd247a20?.jsonfrom=0+second+ago&"
uuid: "8d3353b0-1140-11ef-a931-df6ccd247a20"
host: "192.168.178.138"
# port: "8081"
name: "Volkszähler Verbrauch"
monitored_conditions:
- average
- consumption
- min
- max
- platform: volkszaehler
# uuid: "480f7900-1140-11ef-b2bb-dd3e03d1aa11?.jsonfrom=0+second+ago&"
uuid: "480f7900-1140-11ef-b2bb-dd3e03d1aa11"
host: "192.168.178.138" #Ohne http:// und Port hat es geklappt...
# port: "8081"
name: "Volkszaehler Einspeisung"
monitored_conditions:
- average
- consumption
- min
- max
- platform: volkszaehler
uuid: "11c31170-16c8-11f0-9c6e-03bc4e30373d"
host: "192.168.178.193" #Ohne http:// und Port hat es geklappt...
# port: "8081"
name: "Volkszaehler Waermepumpe"
monitored_conditions:
- average
- consumption
- min
- max
# Mittelwert der Luftfeuchtigkeit Gesamt
- platform: min_max
entity_ids:
- sensor.wohnzimmer_luftfeuchtigkeit
- sensor.kuche_luftfeuchtigkeit
- sensor.bad_luftfeuchtigkeit
- sensor.buro_luftfeuchtigkeit
- sensor.charlotte_luftfeuchtigkeit
- sensor.greta_luftfeuchtigkeit
- sensor.empore_luftfeuchtigkeit
- sensor.flur_luftfeuchtigkeit
- sensor.schlafzimmer_luftfeuchtigkeit
- sensor.speisekammer_luftfeuchtigkeit
- sensor.gastebad_luftfeuchtigkeit
name: luftfeuchtigkeit_durchschnitt
type: mean
# Nittelwert Temperatur Gesamt
- platform: min_max
entity_ids:
- sensor.wohnzimmer_temperatur
- sensor.kuche_temperatur
- sensor.bad_temperatur
- sensor.buro_temperatur
- sensor.charlotte_temperatur
- sensor.greta_temperatur
- sensor.empore_temperatur
- sensor.flur_temperatur
- sensor.schlafzimmer_temperatur
- sensor.speisekammer_temperatur
- sensor.gastebad_temperatur
name: temperatur_durchschnitt
type: mean
# Mittelwert Luftfeuchtigkeit Wohnräume
- platform: min_max
entity_ids:
- sensor.wohnzimmer_luftfeuchtigkeit
- sensor.charlotte_luftfeuchtigkeit
- sensor.greta_luftfeuchtigkeit
- sensor.schlafzimmer_luftfeuchtigkeit
name: luftfeuchtigkeit_wohnraeume
type: mean
# Mittelwert Temperatur Wohnräume
- platform: min_max
entity_ids:
- sensor.wohnzimmer_temperatur
- sensor.charlotte_temperatur
- sensor.greta_temperatur
- sensor.schlafzimmer_temperatur
name: temperatur_wohnraeume
type: mean
#Discogs
- platform: discogs
name: Discogs
token: RRvvAbBgtIJAMCDlDDvYedERMUHBodSEISEZdkqY
monitored_conditions:
- collection
- wantlist
- random_record
View File
+26
View File
@@ -0,0 +1,26 @@
api_version: 2
ssl: false
host: 192.168.178.183
port: 9086
token: JEjmoG1NqHJOB2kz72u189lw1SVdlL43
organization: Häusle
bucket: Bucket
tags:
source: homeassistant
tags_attributes:
- friendly_name
default_measurement: state
max_retries: 3
exclude:
domains:
- automation
- persistent_notification
- person
- zone
include:
domains:
- sensor
- binary_sensor
- light
- switch
- climate
+3
View File
@@ -0,0 +1,3 @@
5.56.187.48:
banned_at: '2025-02-13T11:32:36.647225+00:00'
+9
View File
@@ -0,0 +1,9 @@
# default: info
# logs:
# homeassistant.components.volkszaehler: debug
# netatmo: debug
#
# default: info
# logs:
# custom_components.xiaomi_home: debug
# xiaomi_home: debug # Fallback für Core-Integration
+15
View File
@@ -0,0 +1,15 @@
# Optional: Nur Sensoren exportieren
filter:
# include_domains:
# - sensor
# - binary_sensor
# exclude_entity_globs:
# - sensor.weather_* # Wetter-Sensoren ignorieren
exclude_entities:
- sensor.date_2
- sensor.date_time
- sensor.time_2
exclude_entity_globs:
- binary_sensor.ru*
- device_tracker*
- sensor.watchman*
+28
View File
@@ -0,0 +1,28 @@
#---------------------------------------------
####### Systemeinstellungen #######
#---------------------------------------------
#db_url: mysql://homeassistant:dbpass@core-mariadb/homeassistant?charset=utf8mb4
db_url: mysql://homeassistant:dbpass@192.168.178.170:3306/homeassistant?charset=utf8mb4
purge_keep_days: 720
commit_interval: 60
exclude:
entities:
- sensor.date_2
- sensor.date_time
- sensor.time_2
entity_globs:
- binary_sensor.ru*
- device_tracker*
- sensor.watchman*
include:
entities:
- device_tracker.gretas_iphone
- device_tracker.charlotte_estrellas_iphone_3
- device_tracker.iphone
- device_tracker.sarahs_iphone
- device_tracker.ipad_2
- device_tracker.svensipnepromax
- device_tracker.ipad_von_sven
- device_tracker.id_4_position
+691
View File
@@ -0,0 +1,691 @@
- id: '1702565347223'
name: Wohnzimmer Abend
entities:
light.lowboard_licht:
min_color_temp_kelvin: 2000
max_color_temp_kelvin: 6535
min_mireds: 153
max_mireds: 500
effect_list:
- 'off'
- colorloop
supported_color_modes:
- color_temp
- xy
effect: 'off'
color_mode: color_temp
brightness: 64
color_temp_kelvin: 2277
color_temp: 439
hs_color:
- 29.532
- 81.265
rgb_color:
- 255
- 150
- 48
xy_color:
- 0.57
- 0.389
off_with_transition: false
off_brightness:
friendly_name: Lowboard Licht
supported_features: 44
state: 'on'
light.hochkommode_licht_2:
min_color_temp_kelvin: 2202
max_color_temp_kelvin: 4000
min_mireds: 250
max_mireds: 454
supported_color_modes:
- color_temp
color_mode: color_temp
brightness: 36
color_temp_kelvin: 2202
color_temp: 454
hs_color:
- 29.79
- 84.553
rgb_color:
- 255
- 146
- 39
xy_color:
- 0.579
- 0.388
off_with_transition: false
off_brightness:
friendly_name: Hochkommode Licht
supported_features: 40
state: 'on'
light.kamin_licht_2:
min_color_temp_kelvin: 2202
max_color_temp_kelvin: 4000
min_mireds: 250
max_mireds: 454
supported_color_modes:
- color_temp
color_mode: color_temp
brightness: 15
color_temp_kelvin: 2202
color_temp: 454
hs_color:
- 29.79
- 84.553
rgb_color:
- 255
- 146
- 39
xy_color:
- 0.579
- 0.388
off_with_transition: false
off_brightness:
friendly_name: Kamin Licht
supported_features: 40
state: 'on'
light.eckbank_licht_2:
min_color_temp_kelvin: 2202
max_color_temp_kelvin: 4000
min_mireds: 250
max_mireds: 454
supported_color_modes:
- color_temp
color_mode: color_temp
brightness: 18
color_temp_kelvin: 2202
color_temp: 454
hs_color:
- 29.79
- 84.553
rgb_color:
- 255
- 146
- 39
xy_color:
- 0.579
- 0.388
off_with_transition: false
off_brightness:
friendly_name: Eckbank Licht
supported_features: 40
state: 'on'
light.tischlampe_licht_2:
min_color_temp_kelvin: 2202
max_color_temp_kelvin: 4000
min_mireds: 250
max_mireds: 454
supported_color_modes:
- color_temp
color_mode:
brightness:
color_temp_kelvin:
color_temp:
hs_color:
rgb_color:
xy_color:
off_with_transition: false
off_brightness: 254
friendly_name: Tischlampe Licht
supported_features: 40
state: 'off'
light.treibholzlampe_leuchte:
min_color_temp_kelvin: 2202
max_color_temp_kelvin: 4000
min_mireds: 250
max_mireds: 454
supported_color_modes:
- color_temp
color_mode: color_temp
brightness: 26
color_temp_kelvin: 2283
color_temp: 438
hs_color:
- 29.512
- 81.011
rgb_color:
- 255
- 150
- 48
xy_color:
- 0.57
- 0.389
off_with_transition: false
off_brightness:
friendly_name: Treibholzlampe Leuchte
supported_features: 40
state: 'on'
icon: mdi:sofa-outline
metadata: {}
- id: '1703518319267'
name: Wohnzimmer Hell
entities:
light.lowboard_licht:
min_color_temp_kelvin: 2000
max_color_temp_kelvin: 6535
min_mireds: 153
max_mireds: 500
effect_list:
- 'off'
- colorloop
supported_color_modes:
- color_temp
- xy
effect: 'off'
color_mode: color_temp
brightness: 254
color_temp_kelvin: 2688
color_temp: 372
hs_color:
- 28.421
- 66.108
rgb_color:
- 255
- 166
- 86
xy_color:
- 0.527
- 0.388
off_with_transition: false
off_brightness:
friendly_name: Lowboard Licht
supported_features: 44
state: 'on'
light.eckbank_licht_2:
min_color_temp_kelvin: 2202
max_color_temp_kelvin: 4000
min_mireds: 250
max_mireds: 454
supported_color_modes:
- color_temp
color_mode: color_temp
brightness: 230
color_temp_kelvin: 4000
color_temp: 250
hs_color:
- 26.812
- 34.87
rgb_color:
- 255
- 206
- 166
xy_color:
- 0.42
- 0.365
off_with_transition: false
off_brightness:
friendly_name: Eckbank Licht
supported_features: 40
state: 'on'
light.hochkommode_licht_2:
min_color_temp_kelvin: 2202
max_color_temp_kelvin: 4000
min_mireds: 250
max_mireds: 454
supported_color_modes:
- color_temp
color_mode: color_temp
brightness: 230
color_temp_kelvin: 4000
color_temp: 250
hs_color:
- 26.812
- 34.87
rgb_color:
- 255
- 206
- 166
xy_color:
- 0.42
- 0.365
off_with_transition: false
off_brightness:
friendly_name: Hochkommode Licht
supported_features: 40
state: 'on'
light.tischlampe_licht_2:
min_color_temp_kelvin: 2202
max_color_temp_kelvin: 4000
min_mireds: 250
max_mireds: 454
supported_color_modes:
- color_temp
color_mode: color_temp
brightness: 254
color_temp_kelvin: 2702
color_temp: 370
hs_color:
- 28.391
- 65.659
rgb_color:
- 255
- 167
- 88
xy_color:
- 0.524
- 0.388
off_with_transition: false
off_brightness:
friendly_name: Tischlampe Licht
supported_features: 40
state: 'on'
light.kamin_licht_2:
min_color_temp_kelvin: 2202
max_color_temp_kelvin: 4000
min_mireds: 250
max_mireds: 454
supported_color_modes:
- color_temp
color_mode: color_temp
brightness: 230
color_temp_kelvin: 4000
color_temp: 250
hs_color:
- 26.812
- 34.87
rgb_color:
- 255
- 206
- 166
xy_color:
- 0.42
- 0.365
off_with_transition: false
off_brightness:
friendly_name: Kamin Licht
supported_features: 40
state: 'on'
light.leselampe_licht:
min_color_temp_kelvin: 2202
max_color_temp_kelvin: 4000
min_mireds: 250
max_mireds: 454
supported_color_modes:
- color_temp
color_mode: color_temp
brightness: 230
color_temp_kelvin: 3355
color_temp: 298
hs_color:
- 27.329
- 48.02
rgb_color:
- 255
- 188
- 133
xy_color:
- 0.465
- 0.376
off_with_transition: false
off_brightness:
friendly_name: Leselampe Licht
supported_features: 40
state: 'on'
light.treibholzlampe_leuchte:
min_color_temp_kelvin: 2202
max_color_temp_kelvin: 4000
min_mireds: 250
max_mireds: 454
supported_color_modes:
- color_temp
color_mode: color_temp
brightness: 254
color_temp_kelvin: 2702
color_temp: 370
hs_color:
- 28.391
- 65.659
rgb_color:
- 255
- 167
- 88
xy_color:
- 0.524
- 0.388
off_with_transition: false
off_brightness:
friendly_name: Treibholzlampe Leuchte
supported_features: 40
state: 'on'
icon: mdi:lightbulb-multiple
metadata: {}
- id: '1715510172516'
name: Markisen 20 Prozent
entities:
cover.maestria_io_links:
current_position: 19
device_class: blind
friendly_name: Markise Links
supported_features: 15
state: open
cover.maestria_io_mitte:
current_position: 20
device_class: blind
friendly_name: Markise Mitte
supported_features: 15
state: open
cover.maestria_io_rechts:
current_position: 20
device_class: blind
friendly_name: Markise Rechts
supported_features: 15
state: open
icon: mdi:roller-shade-closed
metadata: {}
- id: '1716225588897'
name: Markisen offen
entities:
cover.maestria_io_links:
current_position: 100
device_class: blind
friendly_name: Markise Links
supported_features: 15
state: open
cover.maestria_io_mitte:
current_position: 100
device_class: blind
friendly_name: Markise Mitte
supported_features: 15
state: open
cover.maestria_io_rechts:
current_position: 100
device_class: blind
friendly_name: Markise Rechts
supported_features: 15
state: open
icon: mdi:roller-shade
metadata: {}
- id: '1735332664389'
name: Wohnzimmer Fernsehen
entities:
light.lowboard_licht:
min_color_temp_kelvin: 2000
max_color_temp_kelvin: 6535
min_mireds: 153
max_mireds: 500
effect_list:
- 'off'
- colorloop
supported_color_modes:
- color_temp
- xy
effect: 'off'
color_mode: color_temp
brightness: 26
color_temp_kelvin: 2277
color_temp: 439
hs_color:
- 29.532
- 81.265
rgb_color:
- 255
- 150
- 48
xy_color:
- 0.57
- 0.389
off_with_transition: false
off_brightness:
friendly_name: Lowboard Licht
supported_features: 44
state: 'on'
light.hochkommode_licht_2:
min_color_temp_kelvin: 2202
max_color_temp_kelvin: 4000
min_mireds: 250
max_mireds: 454
supported_color_modes:
- color_temp
color_mode: color_temp
brightness: 26
color_temp_kelvin: 2202
color_temp: 454
hs_color:
- 29.79
- 84.553
rgb_color:
- 255
- 146
- 39
xy_color:
- 0.579
- 0.388
off_with_transition: false
off_brightness:
friendly_name: Hochkommode Licht
supported_features: 40
state: 'on'
light.treibholzlampe_leuchte:
min_color_temp_kelvin: 2202
max_color_temp_kelvin: 4000
min_mireds: 250
max_mireds: 454
supported_color_modes:
- color_temp
color_mode: color_temp
brightness: 13
color_temp_kelvin: 2202
color_temp: 454
hs_color:
- 29.79
- 84.553
rgb_color:
- 255
- 146
- 39
xy_color:
- 0.579
- 0.388
off_with_transition: false
off_brightness:
friendly_name: Treibholzlampe Leuchte
supported_features: 40
state: 'on'
light.kamin_licht_2:
min_color_temp_kelvin: 2202
max_color_temp_kelvin: 4000
min_mireds: 250
max_mireds: 454
supported_color_modes:
- color_temp
color_mode:
brightness:
color_temp_kelvin:
color_temp:
hs_color:
rgb_color:
xy_color:
off_with_transition: false
off_brightness: 15
friendly_name: Kamin Licht
supported_features: 40
state: 'off'
light.eckbank_licht_2:
min_color_temp_kelvin: 2202
max_color_temp_kelvin: 4000
min_mireds: 250
max_mireds: 454
supported_color_modes:
- color_temp
color_mode:
brightness:
color_temp_kelvin:
color_temp:
hs_color:
rgb_color:
xy_color:
off_with_transition: false
off_brightness: 18
friendly_name: Eckbank Licht
supported_features: 40
state: 'off'
metadata: {}
icon: phu:apple-tv
- id: '1761152969386'
name: Greta Deckenlampe 1%
entities:
light.deckenlampe_greta_licht:
min_color_temp_kelvin: 2202
max_color_temp_kelvin: 4000
min_mireds: 250
max_mireds: 454
supported_color_modes:
- color_temp
color_mode: color_temp
brightness: 3
color_temp_kelvin: 2202
color_temp: 454
hs_color:
- 29.79
- 84.553
rgb_color:
- 255
- 146
- 39
xy_color:
- 0.579
- 0.388
off_with_transition: false
off_brightness:
friendly_name: Deckenlampe
supported_features: 40
state: 'on'
metadata: {}
- id: '1763745376970'
name: Rollos schließen
entities:
cover.smart_roller_shutter_2303224120884470080248e1e9c1d0a6_shutter:
current_position: 0
adjust_status: 0
assumed_state: true
device_class: shutter
friendly_name: Bodentief Esstisch Shutter
supported_features: 15
state: closed
cover.smart_roller_shutter_2303225934207570080248e1e9c1d829_shutter:
current_position: 0
adjust_status: 0
assumed_state: true
device_class: shutter
friendly_name: Lichtband Esstisch Shutter
supported_features: 15
state: closed
cover.smart_roller_shutter_2303223271354370080248e1e9c1e29b_shutter:
current_position: 0
adjust_status: 0
assumed_state: true
device_class: shutter
friendly_name: Lichtband Garage
supported_features: 15
state: closed
cover.smart_roller_shutter_2303220444283070080248e1e9c1d0c1_shutter:
current_position: 0
adjust_status: 0
assumed_state: true
device_class: shutter
friendly_name: Lichtband Garten
supported_features: 15
state: closed
cover.smart_roller_shutter_2211016207868970080148e1e9aeb29d_shutter:
current_position: 0
adjust_status: 0
assumed_state: true
device_class: shutter
friendly_name: Bodentief Charlotte
supported_features: 15
state: closed
cover.smart_roller_shutter_2211013029100770080248e1e9aed618_shutter:
current_position: 0
adjust_status: 0
assumed_state: true
device_class: shutter
friendly_name: Bodentief Greta
supported_features: 15
state: closed
cover.smart_roller_shutter_2211013226379970080248e1e9aed63f_shutter:
current_position: 0
adjust_status: 0
assumed_state: true
device_class: shutter
friendly_name: Fenster Charlotte
supported_features: 15
state: closed
cover.smart_roller_shutter_2211016056184270080248e1e9aeca39_shutter:
current_position: 0
adjust_status: 0
assumed_state: true
device_class: shutter
friendly_name: Fenster Greta
supported_features: 15
state: closed
icon: mdi:window-shutter
metadata: {}
- id: '1763745445954'
name: Rollos öffnen
entities:
cover.smart_roller_shutter_2303224120884470080248e1e9c1d0a6_shutter:
current_position: 100
adjust_status: 0
assumed_state: true
device_class: shutter
friendly_name: Bodentief Esstisch Shutter
supported_features: 15
state: open
cover.smart_roller_shutter_2303225934207570080248e1e9c1d829_shutter:
current_position: 100
adjust_status: 0
assumed_state: true
device_class: shutter
friendly_name: Lichtband Esstisch Shutter
supported_features: 15
state: open
cover.smart_roller_shutter_2303223271354370080248e1e9c1e29b_shutter:
current_position: 100
adjust_status: 0
assumed_state: true
device_class: shutter
friendly_name: Lichtband Garage
supported_features: 15
state: open
cover.smart_roller_shutter_2303220444283070080248e1e9c1d0c1_shutter:
current_position: 100
adjust_status: 0
assumed_state: true
device_class: shutter
friendly_name: Lichtband Garten
supported_features: 15
state: open
cover.smart_roller_shutter_2211016207868970080148e1e9aeb29d_shutter:
current_position: 100
adjust_status: 0
assumed_state: true
device_class: shutter
friendly_name: Bodentief Charlotte
supported_features: 15
state: open
cover.smart_roller_shutter_2211013029100770080248e1e9aed618_shutter:
current_position: 100
adjust_status: 0
assumed_state: true
device_class: shutter
friendly_name: Bodentief Greta
supported_features: 15
state: open
cover.smart_roller_shutter_2211013226379970080248e1e9aed63f_shutter:
current_position: 100
adjust_status: 0
assumed_state: true
device_class: shutter
friendly_name: Fenster Charlotte
supported_features: 15
state: open
cover.smart_roller_shutter_2211016056184270080248e1e9aeca39_shutter:
current_position: 100
adjust_status: 0
assumed_state: true
device_class: shutter
friendly_name: Fenster Greta
supported_features: 15
state: open
icon: mdi:window-shutter-open
metadata: {}
+323
View File
@@ -0,0 +1,323 @@
luftbefeuchter_charlotte_stufe_1:
alias: Luftbefeuchter Charlotte Stufe 1
sequence:
- service: shell_command.humidifier_charlotte_1
data: {}
mode: single
icon: mdi:gauge-empty
luftbefeuchter_charlotte_stufe_4:
alias: Luftbefeuchter Charlotte Stufe 4
sequence:
- service: shell_command.humidifier_charlotte_4
data: {}
mode: single
icon: mdi:gauge
luftbefeuchter_greta_stufe_1:
alias: Luftbefeuchter Greta Aus
sequence:
- data: {}
action: shell_command.humidifier_greta_off
mode: single
icon: mdi:power-plug-off
luftbefeuchter_greta_stufe_4:
alias: Luftbefeuchter Greta Stufe 4
sequence:
- service: shell_command.humidifier_greta_4
data: {}
mode: single
icon: mdi:gauge
luftbefeuchter_schlafzimmer_stufe_1:
alias: Luftbefeuchter Schlafzimmer Stufe 1
sequence:
- service: shell_command.humidifier_schlafzimmer_1
data: {}
mode: single
icon: mdi:gauge-empty
luftbefeuchter_schlafzimmer_stufe_4:
alias: Luftbefeuchter Schlafzimmer Stufe 4
sequence:
- service: shell_command.humidifier_schlafzimmer_4
data: {}
mode: single
icon: mdi:gauge
luftbefeuchter_wohnzimmer_stufe_1:
alias: Luftbefeuchter Wohnzimmer Stufe 1
sequence:
- service: shell_command.humidifier_wohnzimmer_1
data: {}
response_variable: input_text.response
mode: single
icon: mdi:gauge-empty
luftbefeuchter_wohnzimmer_stufe_4:
alias: Luftbefeuchter Wohnzimmer Stufe 4
sequence:
- service: shell_command.humidifier_wohnzimmer_4
data: {}
mode: single
icon: mdi:gauge
luftbefeuchter_charlotte_aus:
alias: Luftbefeuchter Charlotte Aus
sequence:
- service: shell_command.humidifier_charlotte_off
data: {}
mode: single
icon: mdi:power-plug-off
luftbefeuchter_wohnzimmer_aus:
alias: Luftbefeuchter Wohnzimmer Aus
sequence:
- service: shell_command.humidifier_wohnzimmer_off
data: {}
mode: single
icon: mdi:power-plug-off
luftbefeuchter_schlafzimmer_aus:
alias: Luftbefeuchter Schlafzimmer Aus
sequence:
- service: shell_command.humidifier_schlafzimmer_off
data: {}
mode: single
icon: mdi:power-plug-off
luftbefeuchter_greta_stufe_1_2:
alias: Luftbefeuchter Greta Stufe 1
sequence:
- service: shell_command.humidifier_greta_1
data: {}
mode: single
icon: mdi:gauge-empty
rollo_kuche_hoch:
alias: Rollo Küche hoch
sequence:
- type: turn_off
device_id: 7ef9bf7d8853c7912d8e8d795bffc6a1
entity_id: f3a6152ff778cccd70091a9e681786af
domain: switch
- type: turn_on
device_id: 7ef9bf7d8853c7912d8e8d795bffc6a1
entity_id: 617075a30f62b2f7ce29f0127d4caffb
domain: switch
- delay:
hours: 0
minutes: 0
seconds: 13
milliseconds: 0
- type: turn_off
device_id: 7ef9bf7d8853c7912d8e8d795bffc6a1
entity_id: 617075a30f62b2f7ce29f0127d4caffb
domain: switch
- service: input_number.set_value
metadata: {}
data:
value: 100
target:
entity_id: input_number.rollo_kuche_geoffnet
mode: single
icon: mdi:window-shutter-open
rollo_kuche_runter:
alias: Rollo Küche Runter
sequence:
- type: turn_off
device_id: 7ef9bf7d8853c7912d8e8d795bffc6a1
entity_id: 617075a30f62b2f7ce29f0127d4caffb
domain: switch
- type: turn_on
device_id: 7ef9bf7d8853c7912d8e8d795bffc6a1
entity_id: f3a6152ff778cccd70091a9e681786af
domain: switch
- delay:
hours: 0
minutes: 0
seconds: 13
milliseconds: 0
- type: turn_off
device_id: 7ef9bf7d8853c7912d8e8d795bffc6a1
entity_id: f3a6152ff778cccd70091a9e681786af
domain: switch
- service: input_number.set_value
metadata: {}
data:
value: 0
target:
entity_id: input_number.rollo_kuche_geoffnet
mode: single
icon: mdi:window-shutter
ventilator_an:
alias: Ventilator an
sequence:
- service: remote.send_command
target:
device_id: a8a34235bf3ec0b52680443544c7ffd2
data:
num_repeats: 1
delay_secs: 0.4
hold_secs: 0
device: RM4Cmini
command: command_on
description: ''
ventilator_aus:
alias: Ventilator aus
sequence:
- service: remote.send_command
target:
device_id: a8a34235bf3ec0b52680443544c7ffd2
data:
num_repeats: 1
delay_secs: 0.4
hold_secs: 0
device: RM4Cmini
command: command_off
description: ''
rollo_kuche_teilweise_geschlossen:
alias: Rollo Küche Teilweise geschlossen
sequence:
- type: turn_off
device_id: 7ef9bf7d8853c7912d8e8d795bffc6a1
entity_id: 617075a30f62b2f7ce29f0127d4caffb
domain: switch
- type: turn_on
device_id: 7ef9bf7d8853c7912d8e8d795bffc6a1
entity_id: f3a6152ff778cccd70091a9e681786af
domain: switch
- delay:
hours: 0
minutes: 0
seconds: 6
milliseconds: 0
- type: turn_off
device_id: 7ef9bf7d8853c7912d8e8d795bffc6a1
entity_id: f3a6152ff778cccd70091a9e681786af
domain: switch
- metadata: {}
data:
value: 0
target:
entity_id: input_number.rollo_kuche_geoffnet
action: input_number.set_value
mode: single
icon: mdi:window-shutter
description: ''
heizung_alle_aus:
sequence:
- device_id: f21419b347aef9b17c6f31842e0fcb8f
domain: climate
entity_id: 0798ddd4213b38f136ec1b8edfb31912
type: set_hvac_mode
hvac_mode: 'off'
- device_id: 68d4a113b3e948bfc7d4c0f07ecf49b5
domain: climate
entity_id: 3a020e56fc83de00510c9108169ccb25
type: set_hvac_mode
hvac_mode: 'off'
- device_id: 6ecac3aa91b9d6ac55ec19628cd8b130
domain: climate
entity_id: f0b96dff6ca50161c0eaa071b382979d
type: set_hvac_mode
hvac_mode: 'off'
- device_id: 3586f7badaa012862d516d301bf3998c
domain: climate
entity_id: 4e2f833986966c7912b31985a4da31ad
type: set_hvac_mode
hvac_mode: 'off'
- device_id: 6fbdecb066e2f4ae2db01c95a29049ea
domain: climate
entity_id: 393db1c094b33e0848c1a99e8a968b6f
type: set_hvac_mode
hvac_mode: 'off'
- device_id: f886c43330b92ec02168dc21627663b1
domain: climate
entity_id: ecce11d8892e6d548456e33e23baf6fd
type: set_hvac_mode
hvac_mode: 'off'
- device_id: caa8a288ab3196956333577c8e6b6333
domain: climate
entity_id: 2c944542df5d7bca4ac49866d59211b1
type: set_hvac_mode
hvac_mode: 'off'
- device_id: f3cd43fde0deba553249c7d14fd23686
domain: climate
entity_id: bc3b2bd8377cb101ff82fcee48a7abb7
type: set_hvac_mode
hvac_mode: 'off'
- device_id: e4843c5288c07998e803b37adedf4874
domain: climate
entity_id: e337c6967e09ca32556890245b12baab
type: set_hvac_mode
hvac_mode: 'off'
- device_id: 80d169d5a9ff73c6db6207e50a8240dd
domain: climate
entity_id: 35579ba4330dcc9a327183b0ac8171fc
type: set_hvac_mode
hvac_mode: 'off'
- device_id: c1dc383e2bfdcf7504f18d3248788a8b
domain: climate
entity_id: 3d901a5adbde4de5089bc620c375add1
type: set_hvac_mode
hvac_mode: 'off'
alias: 'Heizung: Alle aus'
description: ''
heizung_alle_ein:
sequence:
- device_id: f21419b347aef9b17c6f31842e0fcb8f
domain: climate
entity_id: 0798ddd4213b38f136ec1b8edfb31912
type: set_hvac_mode
hvac_mode: auto
- device_id: 68d4a113b3e948bfc7d4c0f07ecf49b5
domain: climate
entity_id: 3a020e56fc83de00510c9108169ccb25
type: set_hvac_mode
hvac_mode: auto
- device_id: 6ecac3aa91b9d6ac55ec19628cd8b130
domain: climate
entity_id: f0b96dff6ca50161c0eaa071b382979d
type: set_hvac_mode
hvac_mode: auto
- device_id: 3586f7badaa012862d516d301bf3998c
domain: climate
entity_id: 4e2f833986966c7912b31985a4da31ad
type: set_hvac_mode
hvac_mode: auto
- device_id: 6fbdecb066e2f4ae2db01c95a29049ea
domain: climate
entity_id: 393db1c094b33e0848c1a99e8a968b6f
type: set_hvac_mode
hvac_mode: auto
- device_id: f886c43330b92ec02168dc21627663b1
domain: climate
entity_id: ecce11d8892e6d548456e33e23baf6fd
type: set_hvac_mode
hvac_mode: auto
- device_id: caa8a288ab3196956333577c8e6b6333
domain: climate
entity_id: 2c944542df5d7bca4ac49866d59211b1
type: set_hvac_mode
hvac_mode: auto
- device_id: f3cd43fde0deba553249c7d14fd23686
domain: climate
entity_id: bc3b2bd8377cb101ff82fcee48a7abb7
type: set_hvac_mode
hvac_mode: auto
- device_id: e4843c5288c07998e803b37adedf4874
domain: climate
entity_id: e337c6967e09ca32556890245b12baab
type: set_hvac_mode
hvac_mode: auto
- device_id: 80d169d5a9ff73c6db6207e50a8240dd
domain: climate
entity_id: 35579ba4330dcc9a327183b0ac8171fc
type: set_hvac_mode
hvac_mode: auto
- device_id: c1dc383e2bfdcf7504f18d3248788a8b
domain: climate
entity_id: 3d901a5adbde4de5089bc620c375add1
type: set_hvac_mode
hvac_mode: auto
alias: 'Heizung: Alle ein'
description: ''
skript_markisen_20_prozent:
sequence:
- action: scene.turn_on
metadata: {}
data: {}
target:
entity_id: scene.neue_szene_2
alias: Skript Markisen 20 Prozent
description: ''
+6
View File
@@ -0,0 +1,6 @@
# Use this file to store secrets like usernames and passwords.
# Learn more at https://www.home-assistant.io/docs/configuration/secrets/
some_password: welcome
#mariadb_url: mysql://homeassistant@datenbank/homeassistant?charset=utf8mb4