Enhance Home Assistant configuration with new automations and scripts

- Updated .gitignore to include additional directories.
- Added multiple automations for home control, including doorbell notifications and sleep mode management in automations.yaml.
- Introduced a new script for mobile notifications in scripts.yaml.
- Created new KNX configuration files for buttons, sensors, and switches to improve home automation capabilities.
- Updated secrets.yaml to streamline sensitive information management.
This commit is contained in:
Ben Melchior
2025-04-02 14:12:26 +02:00
parent c87787ef16
commit 20122a7c5b
10 changed files with 338 additions and 13 deletions

5
knx/button.yaml Normal file
View File

@@ -0,0 +1,5 @@
- name: 'Garagentor 1'
address: '5/4/0'
- name: 'Garagentor 2'
address: '5/4/1'

View File

@@ -1,3 +1,6 @@
light: !include light.yaml
cover: !include cover.yaml
climate: !include climate.yaml
climate: !include climate.yaml
button: !include button.yaml
sensor: !include sensor.yaml
switch: !include switch.yaml

View File

@@ -1,5 +1,5 @@
KNX Group,Name
0/0/1,Nachtmodus
0/1/0,Z_UG_FL_PM Schalten
0/1/1,Z_UG_FL_PM Dimmen
0/1/2,Z_UG_FL_PM Wert senden
@@ -42,8 +42,6 @@ KNX Group,Name
2/5/2,SE_EG_WC_Temp
2/5/3,SE_EG_FL_Temp
2/5/5,SE_EG_WC_Proximity
3/4/0,SE_OG1_FL_PR
3/4/1,SE_OG1_FL_LUX
3/5/0,SE_OG1_SZ1_Temp
3/5/1,SE_OG1_SZ2_Temp
3/5/2,SE_OG1_BZ_Temp
@@ -51,10 +49,7 @@ KNX Group,Name
4/5/0,SE_OG2_SZ_TEMP
4/5/1,SE_OG2_BZ_TEMP
4/5/2,SE_OG2_TR_TEMP
5/4/2,SE_AU_EG_LUX
5/4/3,SE_AU_EG_PR
5/5/0,SE_AU_GA_Temp
5/1/30,SS_AU_EB_01 Schalten
5/1/33,SS_AU_EB_01 Rückmeldung Status
5/4/0,Garagentor 1
5/4/1,Garagentor 2
1 KNX Group Name
2 0/0/1 0/1/0 Nachtmodus Z_UG_FL_PM Schalten
3 0/1/0 0/1/1 Z_UG_FL_PM Schalten Z_UG_FL_PM Dimmen
4 0/1/1 0/1/2 Z_UG_FL_PM Dimmen Z_UG_FL_PM Wert senden
5 0/1/2 0/1/3 Z_UG_FL_PM Wert senden Z_Licht aus
42 2/5/2 2/5/3 SE_EG_WC_Temp SE_EG_FL_Temp
43 2/5/3 2/5/5 SE_EG_FL_Temp SE_EG_WC_Proximity
44 2/5/5 3/5/0 SE_EG_WC_Proximity SE_OG1_SZ1_Temp
3/4/0 SE_OG1_FL_PR
3/4/1 SE_OG1_FL_LUX
45 3/5/0 3/5/1 SE_OG1_SZ1_Temp SE_OG1_SZ2_Temp
46 3/5/1 3/5/2 SE_OG1_SZ2_Temp SE_OG1_BZ_Temp
47 3/5/2 3/5/3 SE_OG1_BZ_Temp SE_OG1_FL_Temp
49 4/5/0 4/5/1 SE_OG2_SZ_TEMP SE_OG2_BZ_TEMP
50 4/5/1 4/5/2 SE_OG2_BZ_TEMP SE_OG2_TR_TEMP
51 4/5/2 5/5/0 SE_OG2_TR_TEMP SE_AU_GA_Temp
52 5/4/2 5/1/30 SE_AU_EG_LUX SS_AU_EB_01 Schalten
5/4/3 SE_AU_EG_PR
53 5/5/0 5/1/33 SE_AU_GA_Temp SS_AU_EB_01 Rückmeldung Status
54
55
5/4/0 Garagentor 1
5/4/1 Garagentor 2

13
knx/sensor.yaml Normal file
View File

@@ -0,0 +1,13 @@
- name: 'SE_AU_EG_LUX'
state_address: '5/4/2'
type: illuminance
device_class: illuminance
- name: 'SE_OG1_FL_LUX'
state_address: '3/4/1'
type: illuminance
device_class: illuminance
- name: 'SE_EG_WC_Proximity'
state_address: '2/5/5'
type: pulse

11
knx/switch.yaml Normal file
View File

@@ -0,0 +1,11 @@
- name: 'SE_AU_EG_PR'
address: '5/4/3'
state_address: '5/4/3'
- name: 'SE_OG1_FL_PR'
address: '3/4/0'
state_address: '3/4/0'
- name: 'Nachtmodus'
address: '0/0/1'
state_address: '0/0/1'