mirror of
https://github.com/Andre0512/hon.git
synced 2026-06-15 03:36:27 +00:00
Expose 4 AC entities
This commit is contained in:
parent
4c44f6df5c
commit
2b82de679d
|
|
@ -514,6 +514,38 @@ SENSORS: dict[str, tuple[SensorEntityDescription, ...]] = {
|
|||
translation_key="mach_modes_ac",
|
||||
option_list=const.AC_MACH_MODE,
|
||||
),
|
||||
HonSensorEntityDescription(
|
||||
key="compressorFrequency",
|
||||
name="Compressor Frequency",
|
||||
icon="mdi:sine-wave",
|
||||
device_class=SensorDeviceClass.FREQUENCY,
|
||||
native_unit_of_measurement="Hz",
|
||||
entity_registry_enabled_default=False,
|
||||
),
|
||||
HonSensorEntityDescription(
|
||||
key="humidityIndoor",
|
||||
name="Humidity Indoor",
|
||||
icon="mdi:water-percent",
|
||||
device_class=SensorDeviceClass.HUMIDITY,
|
||||
native_unit_of_measurement="%",
|
||||
entity_registry_enabled_default=False,
|
||||
),
|
||||
HonSensorEntityDescription(
|
||||
key="power",
|
||||
name="Power",
|
||||
icon="mdi:lightning-bolt",
|
||||
device_class=SensorDeviceClass.POWER,
|
||||
native_unit_of_measurement="W",
|
||||
entity_registry_enabled_default=False,
|
||||
),
|
||||
HonSensorEntityDescription(
|
||||
key="compressorCurrent",
|
||||
name="Compressor Current",
|
||||
icon="mdi:current-ac",
|
||||
device_class=SensorDeviceClass.CURRENT,
|
||||
native_unit_of_measurement="A",
|
||||
entity_registry_enabled_default=False,
|
||||
),
|
||||
),
|
||||
"REF": (
|
||||
HonSensorEntityDescription(
|
||||
|
|
|
|||
Loading…
Reference in a new issue