# Das ist die erste Commit-Beschreibung: update # Das ist Commit-Beschreibung #2: Test Name # Das ist Commit-Beschreibung #3: asd # Das ist Commit-Beschreibung #4: asd # Das ist Commit-Beschreibung #5: rename # Das ist Commit-Beschreibung #6: asd # Das ist Commit-Beschreibung #7: asd # Das ist Commit-Beschreibung #8: sdfg # Das ist Commit-Beschreibung #9: typo # Das ist Commit-Beschreibung #10: typo # Das ist Commit-Beschreibung #11: c header # Das ist Commit-Beschreibung #12: asdf # Das ist Commit-Beschreibung #13: error # Das ist Commit-Beschreibung #14: fehler # Das ist Commit-Beschreibung #15: update example # Das ist Commit-Beschreibung #16: asd # Das ist Commit-Beschreibung #17: sdf # Das ist Commit-Beschreibung #18: xcv # Das ist Commit-Beschreibung #19: adsf # Das ist Commit-Beschreibung #20: adress # Das ist Commit-Beschreibung #21: dfas # Das ist Commit-Beschreibung #22: Singed Values Temperature # Das ist Commit-Beschreibung #23: asd # Das ist Commit-Beschreibung #24: ü # Das ist Commit-Beschreibung #25: asd # Das ist Commit-Beschreibung #26: Change id # Das ist Commit-Beschreibung #27: entferne unbenutzte werte
52 lines
1.6 KiB
YAML
52 lines
1.6 KiB
YAML
sensor:
|
|
- platform: modbus_controller
|
|
modbus_controller_id: ${modbus_controller_id}
|
|
name: "${name} Ruecklauftemperatur an der Zirkulations Leitung"
|
|
id: ${lower_name}_Ruecklauftemperatur_an_der_Zirkulations_Leitung
|
|
register_type: read
|
|
address: 711
|
|
unit_of_measurement: "°C"
|
|
value_type: U_WORD
|
|
filters:
|
|
- multiply: 0.5
|
|
|
|
- platform: modbus_controller
|
|
modbus_controller_id: ${modbus_controller_id}
|
|
name: "${name} Strömungsschalter an der Brauchwasser Leitung"
|
|
id: ${lower_name}_Stoemungsschalter_an_der_Brauchwasser_Leitung
|
|
register_type: read
|
|
address: 600
|
|
value_type: U_WORD
|
|
|
|
- platform: modbus_controller
|
|
modbus_controller_id: ${modbus_controller_id}
|
|
name: "${name} Drehzahl der Zirkulations Pumpe"
|
|
id: ${lower_name}_Drehzahl_der_Zirkulations_Pumpe
|
|
register_type: read
|
|
address: 710
|
|
unit_of_measurement: "%"
|
|
value_type: U_WORD
|
|
|
|
binary_sensor:
|
|
- platform: template
|
|
name: "${name} Zirkulationspumpe AN AUS"
|
|
id: ${lower_name}_Zirkulations_Pumpe_AN_AUS
|
|
lambda: |-
|
|
if (id(${lower_name}_Drehzahl_der_Zirkulations_Pumpe).state > 0) {
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
|
|
number:
|
|
- platform: modbus_controller
|
|
modbus_controller_id: ${modbus_controller_id}
|
|
name: "${name} Bei welcher RL Temperatur an der Zirkulationsleitung soll die Pumpe ausschalten"
|
|
id: ${lower_name}_Bei_welcher_RL_Temperatur_an_der_Zirkulationsleitung_soll_die_Pumpe_ausschalten
|
|
address: 600
|
|
unit_of_measurement: "°C"
|
|
value_type: U_WORD
|
|
multiply: 2
|
|
min_value: 20
|
|
max_value: 120
|