Add valve position sensor for Eve Thermo (#100856)
parent
dd302b291d
commit
fb174f8063
|
@ -77,6 +77,7 @@ CHARACTERISTIC_PLATFORMS = {
|
|||
CharacteristicsTypes.VENDOR_EVE_ENERGY_WATT: "sensor",
|
||||
CharacteristicsTypes.VENDOR_EVE_DEGREE_AIR_PRESSURE: "sensor",
|
||||
CharacteristicsTypes.VENDOR_EVE_DEGREE_ELEVATION: "number",
|
||||
CharacteristicsTypes.VENDOR_EVE_THERMO_VALVE_POSITION: "sensor",
|
||||
CharacteristicsTypes.VENDOR_HAA_SETUP: "button",
|
||||
CharacteristicsTypes.VENDOR_HAA_UPDATE: "button",
|
||||
CharacteristicsTypes.VENDOR_KOOGEEK_REALTIME_ENERGY: "sensor",
|
||||
|
|
|
@ -337,6 +337,14 @@ SIMPLE_SENSOR: dict[str, HomeKitSensorEntityDescription] = {
|
|||
state_class=SensorStateClass.MEASUREMENT,
|
||||
native_unit_of_measurement=PERCENTAGE,
|
||||
),
|
||||
CharacteristicsTypes.VENDOR_EVE_THERMO_VALVE_POSITION: HomeKitSensorEntityDescription(
|
||||
key=CharacteristicsTypes.VENDOR_EVE_THERMO_VALVE_POSITION,
|
||||
name="Valve position",
|
||||
icon="mdi:pipe-valve",
|
||||
entity_category=EntityCategory.DIAGNOSTIC,
|
||||
state_class=SensorStateClass.MEASUREMENT,
|
||||
native_unit_of_measurement=PERCENTAGE,
|
||||
),
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue