Skip to content

Commit

Permalink
Add missing sensors
Browse files Browse the repository at this point in the history
  • Loading branch information
iMicknl committed Feb 20, 2022
1 parent 5a93728 commit 3c6129d
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions custom_components/tahoma/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -350,6 +350,20 @@ class OverkizSensorDescription(SensorEntityDescription):
cast(str, value), cast(str, value)
),
),
OverkizSensorDescription(
key=OverkizState.CORE_REMAINING_HOT_WATER,
name="Remaining Hot Water Volume",
icon="mdi:water",
native_unit_of_measurement=VOLUME_LITERS,
state_class=SensorStateClass.MEASUREMENT,
),
OverkizSensorDescription(
key=OverkizState.MODBUSLINK_MIDDLE_WATER_TEMPERATURE,
name="Middle Water Temperature",
native_unit_of_measurement=TEMP_CELSIUS,
device_class=SensorDeviceClass.TEMPERATURE,
state_class=SensorStateClass.MEASUREMENT,
),
# DomesticHotWaterProduction/WaterHeatingSystem
OverkizSensorDescription(
key=OverkizState.IO_HEAT_PUMP_OPERATING_TIME,
Expand Down

0 comments on commit 3c6129d

Please sign in to comment.