Revert "Add sensor_name"

This reverts commit ad3da048e9.
This commit is contained in:
Mark Hannon
2025-05-13 21:20:26 +00:00
parent e6e838bb53
commit eaf19b63c5

View File

@@ -27,7 +27,6 @@ from .entity import ZimiEntity
class ZimiSensorEntityDescription(SensorEntityDescription): class ZimiSensorEntityDescription(SensorEntityDescription):
"""Class describing Zimi sensor entities.""" """Class describing Zimi sensor entities."""
sensor_name: str | None = None
value_fn: Callable[[ControlPointDevice], StateType] value_fn: Callable[[ControlPointDevice], StateType]
@@ -37,7 +36,6 @@ GARAGE_SENSOR_DESCRIPTIONS: tuple[ZimiSensorEntityDescription, ...] = (
translation_key="door_temperature", translation_key="door_temperature",
native_unit_of_measurement=UnitOfTemperature.CELSIUS, native_unit_of_measurement=UnitOfTemperature.CELSIUS,
device_class=SensorDeviceClass.TEMPERATURE, device_class=SensorDeviceClass.TEMPERATURE,
sensor_name="Outside Temperature",
value_fn=lambda device: device.door_temp, value_fn=lambda device: device.door_temp,
), ),
ZimiSensorEntityDescription( ZimiSensorEntityDescription(
@@ -46,7 +44,6 @@ GARAGE_SENSOR_DESCRIPTIONS: tuple[ZimiSensorEntityDescription, ...] = (
native_unit_of_measurement=PERCENTAGE, native_unit_of_measurement=PERCENTAGE,
entity_category=EntityCategory.DIAGNOSTIC, entity_category=EntityCategory.DIAGNOSTIC,
device_class=SensorDeviceClass.BATTERY, device_class=SensorDeviceClass.BATTERY,
sensor_name="Battery Level",
value_fn=lambda device: device.battery_level, value_fn=lambda device: device.battery_level,
), ),
ZimiSensorEntityDescription( ZimiSensorEntityDescription(
@@ -54,7 +51,6 @@ GARAGE_SENSOR_DESCRIPTIONS: tuple[ZimiSensorEntityDescription, ...] = (
translation_key="garage_temperature", translation_key="garage_temperature",
native_unit_of_measurement=UnitOfTemperature.CELSIUS, native_unit_of_measurement=UnitOfTemperature.CELSIUS,
device_class=SensorDeviceClass.TEMPERATURE, device_class=SensorDeviceClass.TEMPERATURE,
sensor_name="Garage Temperature",
value_fn=lambda device: device.garage_temp, value_fn=lambda device: device.garage_temp,
), ),
ZimiSensorEntityDescription( ZimiSensorEntityDescription(
@@ -62,7 +58,6 @@ GARAGE_SENSOR_DESCRIPTIONS: tuple[ZimiSensorEntityDescription, ...] = (
translation_key="garage_humidty", translation_key="garage_humidty",
native_unit_of_measurement=PERCENTAGE, native_unit_of_measurement=PERCENTAGE,
device_class=SensorDeviceClass.HUMIDITY, device_class=SensorDeviceClass.HUMIDITY,
sensor_name="Garage Humidity",
value_fn=lambda device: device.garage_humidity, value_fn=lambda device: device.garage_humidity,
), ),
) )
@@ -103,7 +98,6 @@ class ZimiSensor(ZimiEntity, SensorEntity):
self.entity_description = description self.entity_description = description
self._attr_unique_id = device.identifier + "." + self.entity_description.key self._attr_unique_id = device.identifier + "." + self.entity_description.key
self._attr_name = self.entity_description.sensor_name
@property @property
def native_value(self) -> str | int | float | None: def native_value(self) -> str | int | float | None: