Skip to content

Commit

Permalink
use standardized ISO names for temperatures
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom-Bom-badil authored Dec 30, 2024
1 parent 5422601 commit ded6e41
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions custom_components/helios_vallox_ventilation/configuration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,25 +34,30 @@
default_value: 8
icon: "mdi:speedometer"

- name: "temperature_outside"
# now using the ISO names for temperatures
# DE: Außenlufttemperatur
- name: "temperature_outdoor_air"
unit_of_measurement: "°C"
device_class: "temperature"
state_class: "measurement" # this means "read-only"
state_class: "measurement" # ="read-only"
icon: "mdi:thermometer"

- name: "temperature_inlet"
# DE: Zulufttemperatur
- name: "temperature_supply_air"
unit_of_measurement: "°C"
device_class: "temperature"
state_class: "measurement"
icon: "mdi:thermometer"

- name: "temperature_outlet"
# DE: Ablufttemperatur
- name: "temperature_extract_air"
unit_of_measurement: "°C"
device_class: "temperature"
state_class: "measurement"
icon: "mdi:thermometer"

- name: "temperature_exhaust"
# DE: Fortlufttemperatur
- name: "temperature_exhaust_air"
unit_of_measurement: "°C"
device_class: "temperature"
state_class: "measurement"
Expand Down Expand Up @@ -170,11 +175,11 @@

binary_sensors:

- name: "powerstate" # switch ???? --> wirft zZ Fehler
- name: "powerstate" # switch ???? --> throws errors on writing
device_class: "power"
icon: "mdi:power-settings"

- name: "post_heating_on" # Vallox only
- name: "post_heating_on" # Vallox only?
device_class: "heat"
icon: "mdi:heating-coil"

Expand Down

0 comments on commit ded6e41

Please sign in to comment.