Use enums in Point (#62070)

pull/62125/head
Robert Hillis 2021-12-16 16:29:54 -05:00 committed by GitHub
parent 74a9f8e81d
commit 32e1a3d063
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 24 deletions

View File

@ -4,14 +4,8 @@ import logging
from pypoint import EVENTS
from homeassistant.components.binary_sensor import (
DEVICE_CLASS_BATTERY,
DEVICE_CLASS_COLD,
DEVICE_CLASS_CONNECTIVITY,
DEVICE_CLASS_HEAT,
DEVICE_CLASS_MOISTURE,
DEVICE_CLASS_MOTION,
DEVICE_CLASS_SOUND,
DOMAIN,
BinarySensorDeviceClass,
BinarySensorEntity,
)
from homeassistant.core import callback
@ -25,17 +19,17 @@ _LOGGER = logging.getLogger(__name__)
DEVICES = {
"alarm": {"icon": "mdi:alarm-bell"},
"battery": {"device_class": DEVICE_CLASS_BATTERY},
"battery": {"device_class": BinarySensorDeviceClass.BATTERY},
"button_press": {"icon": "mdi:gesture-tap-button"},
"cold": {"device_class": DEVICE_CLASS_COLD},
"connectivity": {"device_class": DEVICE_CLASS_CONNECTIVITY},
"cold": {"device_class": BinarySensorDeviceClass.COLD},
"connectivity": {"device_class": BinarySensorDeviceClass.CONNECTIVITY},
"dry": {"icon": "mdi:water"},
"glass": {"icon": "mdi:window-closed-variant"},
"heat": {"device_class": DEVICE_CLASS_HEAT},
"moisture": {"device_class": DEVICE_CLASS_MOISTURE},
"motion": {"device_class": DEVICE_CLASS_MOTION},
"heat": {"device_class": BinarySensorDeviceClass.HEAT},
"moisture": {"device_class": BinarySensorDeviceClass.MOISTURE},
"motion": {"device_class": BinarySensorDeviceClass.MOTION},
"noise": {"icon": "mdi:volume-high"},
"sound": {"device_class": DEVICE_CLASS_SOUND},
"sound": {"device_class": BinarySensorDeviceClass.SOUND},
"tamper_old": {"icon": "mdi:shield-alert"},
"tamper": {"icon": "mdi:shield-alert"},
}
@ -118,7 +112,7 @@ class MinutPointBinarySensor(MinutPointEntity, BinarySensorEntity):
@property
def is_on(self):
"""Return the state of the binary sensor."""
if self.device_class == DEVICE_CLASS_CONNECTIVITY:
if self.device_class == BinarySensorDeviceClass.CONNECTIVITY:
# connectivity is the other way around.
return not self._is_on
return self._is_on

View File

@ -6,16 +6,11 @@ import logging
from homeassistant.components.sensor import (
DOMAIN,
SensorDeviceClass,
SensorEntity,
SensorEntityDescription,
)
from homeassistant.const import (
DEVICE_CLASS_HUMIDITY,
DEVICE_CLASS_TEMPERATURE,
PERCENTAGE,
SOUND_PRESSURE_WEIGHTED_DBA,
TEMP_CELSIUS,
)
from homeassistant.const import PERCENTAGE, SOUND_PRESSURE_WEIGHTED_DBA, TEMP_CELSIUS
from homeassistant.helpers.dispatcher import async_dispatcher_connect
from homeassistant.util.dt import parse_datetime
@ -45,13 +40,13 @@ SENSOR_TYPES: tuple[MinutPointSensorEntityDescription, ...] = (
MinutPointSensorEntityDescription(
key="temperature",
precision=1,
device_class=DEVICE_CLASS_TEMPERATURE,
device_class=SensorDeviceClass.TEMPERATURE,
native_unit_of_measurement=TEMP_CELSIUS,
),
MinutPointSensorEntityDescription(
key="humidity",
precision=1,
device_class=DEVICE_CLASS_HUMIDITY,
device_class=SensorDeviceClass.HUMIDITY,
native_unit_of_measurement=PERCENTAGE,
),
MinutPointSensorEntityDescription(