- added new binary sensor template to determine of pumpe is on/off

- swapped modbus register for saugzug ansteuerung & sekundärluft
- added new binary sensor template to determine of zirkulationspumpe is on/off
This commit is contained in:
GyroGearl00se
2023-11-24 01:27:20 +01:00
parent 3ad4ebc54f
commit b182827eb4
3 changed files with 25 additions and 3 deletions

View File

@@ -40,4 +40,15 @@ number:
value_type: U_WORD
multiply: 2
min_value: 1
max_value: 90
max_value: 90
binary_sensor:
- platform: template
name: "${name} Boiler 1 Pumpe Ansteuerung AN AUS"
id: ${name}_Boiler_1_Pumpe_Ansteuerung_AN_AUS
lambda: |-
if (id(${name}_Boiler_1_Pumpe_Ansteuerung).state > 0) {
return true;
} else {
return false;
}

View File

@@ -33,7 +33,7 @@ sensor:
name: "${name} Saugzug - Ansteuerung"
id: ${name}_Saugzug_Ansteuerung
register_type: read
address: 12
address: 13
unit_of_measurement: "%"
value_type: U_WORD
@@ -92,7 +92,7 @@ sensor:
name: "${name} Sekundärluft"
id: ${name}_Sekundaerluft
register_type: read
address: 13
address: 12
unit_of_measurement: "%"
value_type: U_WORD

View File

@@ -26,3 +26,14 @@ sensor:
address: 710
unit_of_measurement: "%"
value_type: U_WORD
binary_sensor:
- platform: template
name: "${name} Zirkulationspumpe AN AUS"
id: ${name}_Zirkulations_Pumpe_AN_AUS
lambda: |-
if (id(${name}_Drehzahl_der_Zirkulations_Pumpe).state > 0) {
return true;
} else {
return false;
}