core/homeassistant/components/sms/sensor.py

85 lines
2.5 KiB
Python
Raw Normal View History

2020-06-23 03:41:55 +00:00
"""Support for SMS dongle sensor."""
import logging
import gammu # pylint: disable=import-error
2020-06-23 03:41:55 +00:00
from homeassistant.components.sensor import (
SensorDeviceClass,
SensorEntity,
SensorEntityDescription,
)
from homeassistant.config_entries import ConfigEntry
from homeassistant.const import SIGNAL_STRENGTH_DECIBELS
from homeassistant.core import HomeAssistant
from homeassistant.helpers.entity import DeviceInfo
from homeassistant.helpers.entity_platform import AddEntitiesCallback
2020-06-23 03:41:55 +00:00
from .const import DOMAIN, SMS_GATEWAY
_LOGGER = logging.getLogger(__name__)
async def async_setup_entry(
hass: HomeAssistant,
config_entry: ConfigEntry,
async_add_entities: AddEntitiesCallback,
) -> None:
2020-06-23 03:41:55 +00:00
"""Set up the GSM Signal Sensor sensor."""
gateway = hass.data[DOMAIN][SMS_GATEWAY]
imei = await gateway.get_imei_async()
async_add_entities(
[
GSMSignalSensor(
hass,
gateway,
imei,
SensorEntityDescription(
key="signal",
name=f"gsm_signal_imei_{imei}",
device_class=SensorDeviceClass.SIGNAL_STRENGTH,
native_unit_of_measurement=SIGNAL_STRENGTH_DECIBELS,
entity_registry_enabled_default=False,
),
)
],
True,
2020-08-27 11:56:20 +00:00
)
2020-06-23 03:41:55 +00:00
class GSMSignalSensor(SensorEntity):
2020-06-23 03:41:55 +00:00
"""Implementation of a GSM Signal sensor."""
def __init__(self, hass, gateway, imei, description):
2020-06-23 03:41:55 +00:00
"""Initialize the GSM Signal sensor."""
self._attr_device_info = DeviceInfo(
identifiers={(DOMAIN, str(imei))},
name="SMS Gateway",
)
self._attr_unique_id = str(imei)
2020-06-23 03:41:55 +00:00
self._hass = hass
self._gateway = gateway
self._state = None
self.entity_description = description
2020-06-23 03:41:55 +00:00
@property
def available(self):
"""Return if the sensor data are available."""
return self._state is not None
@property
def native_value(self):
2020-06-23 03:41:55 +00:00
"""Return the state of the device."""
return self._state["SignalStrength"]
async def async_update(self):
"""Get the latest data from the modem."""
try:
self._state = await self._gateway.get_signal_quality_async()
except gammu.GSMError as exc:
2020-06-23 03:41:55 +00:00
_LOGGER.error("Failed to read signal quality: %s", exc)
@property
def extra_state_attributes(self):
2020-06-23 03:41:55 +00:00
"""Return the sensor attributes."""
return self._state