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:
5
knx/button.yaml
Normal file
5
knx/button.yaml
Normal file
@@ -0,0 +1,5 @@
|
||||
- name: 'Garagentor 1'
|
||||
address: '5/4/0'
|
||||
|
||||
- name: 'Garagentor 2'
|
||||
address: '5/4/1'
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
13
knx/sensor.yaml
Normal file
13
knx/sensor.yaml
Normal 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
11
knx/switch.yaml
Normal 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'
|
||||
Reference in New Issue
Block a user