Files
Lambdatronic_S3200/netzpumpe.yaml
Florian Simmer 822324cba3 # Das ist eine Kombination aus 27 Commits.
# 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
2026-01-23 20:12:57 +01:00

32 lines
825 B
YAML

sensor:
- platform: modbus_controller
modbus_controller_id: ${modbus_controller_id}
name: "${name} Drehzahl Netzpumpe"
id: ${lower_name}_Drehzahl_Netzpumpe
register_type: read
address: 700
unit_of_measurement: "%"
value_type: U_WORD
- platform: modbus_controller
modbus_controller_id: ${modbus_controller_id}
name: "${name} Netzrücklauf Temperatur"
id: ${lower_name}_Netzruecklauf_Temperatur
register_type: read
address: 701
unit_of_measurement: "°C"
value_type: S_WORD
filters:
- multiply: 0.5
binary_sensor:
- platform: template
name: "${name} Netzpumpe AN AUS"
id: ${lower_name}_Netzpumpe_AN_AUS
lambda: |-
if (id(${lower_name}_Drehzahl_Netzpumpe).state > 0) {
return true;
} else {
return false;
}