mirror of
https://github.com/home-assistant/core.git
synced 2025-07-18 02:37:08 +00:00
Use new enums in sms (#62372)
Co-authored-by: epenet <epenet@users.noreply.github.com>
This commit is contained in:
parent
cabcb52fb3
commit
b5de2c38b3
@ -3,8 +3,12 @@ import logging
|
|||||||
|
|
||||||
import gammu # pylint: disable=import-error
|
import gammu # pylint: disable=import-error
|
||||||
|
|
||||||
from homeassistant.components.sensor import SensorEntity, SensorEntityDescription
|
from homeassistant.components.sensor import (
|
||||||
from homeassistant.const import DEVICE_CLASS_SIGNAL_STRENGTH, SIGNAL_STRENGTH_DECIBELS
|
SensorDeviceClass,
|
||||||
|
SensorEntity,
|
||||||
|
SensorEntityDescription,
|
||||||
|
)
|
||||||
|
from homeassistant.const import SIGNAL_STRENGTH_DECIBELS
|
||||||
from homeassistant.helpers.entity import DeviceInfo
|
from homeassistant.helpers.entity import DeviceInfo
|
||||||
|
|
||||||
from .const import DOMAIN, SMS_GATEWAY
|
from .const import DOMAIN, SMS_GATEWAY
|
||||||
@ -25,7 +29,7 @@ async def async_setup_entry(hass, config_entry, async_add_entities):
|
|||||||
SensorEntityDescription(
|
SensorEntityDescription(
|
||||||
key="signal",
|
key="signal",
|
||||||
name=f"gsm_signal_imei_{imei}",
|
name=f"gsm_signal_imei_{imei}",
|
||||||
device_class=DEVICE_CLASS_SIGNAL_STRENGTH,
|
device_class=SensorDeviceClass.SIGNAL_STRENGTH,
|
||||||
native_unit_of_measurement=SIGNAL_STRENGTH_DECIBELS,
|
native_unit_of_measurement=SIGNAL_STRENGTH_DECIBELS,
|
||||||
entity_registry_enabled_default=False,
|
entity_registry_enabled_default=False,
|
||||||
),
|
),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user