diff --git a/homeassistant/components/blink/sensor.py b/homeassistant/components/blink/sensor.py index 74db76c421e900196f58fd172036b3711f3ee09e..ea31d1b29ab72570f25457533faba382afd4d449 100644 --- a/homeassistant/components/blink/sensor.py +++ b/homeassistant/components/blink/sensor.py @@ -10,11 +10,7 @@ from homeassistant.components.sensor import ( SensorStateClass, ) from homeassistant.config_entries import ConfigEntry -from homeassistant.const import ( - SIGNAL_STRENGTH_DECIBELS_MILLIWATT, - EntityCategory, - UnitOfTemperature, -) +from homeassistant.const import EntityCategory, UnitOfTemperature from homeassistant.core import HomeAssistant, callback from homeassistant.helpers.device_registry import DeviceInfo from homeassistant.helpers.entity_platform import AddEntitiesCallback @@ -35,9 +31,8 @@ SENSOR_TYPES: tuple[SensorEntityDescription, ...] = ( ), SensorEntityDescription( key=TYPE_WIFI_STRENGTH, - translation_key="wifi_rssi", - native_unit_of_measurement=SIGNAL_STRENGTH_DECIBELS_MILLIWATT, - device_class=SensorDeviceClass.SIGNAL_STRENGTH, + translation_key="wifi_strength", + icon="mdi:wifi", entity_category=EntityCategory.DIAGNOSTIC, state_class=SensorStateClass.MEASUREMENT, ), diff --git a/homeassistant/components/blink/strings.json b/homeassistant/components/blink/strings.json index a875fb3e343fe7f96e2f62129bf0fe8bfaf44f98..09bbba4c22612db124cb016f2cddb2d91c302742 100644 --- a/homeassistant/components/blink/strings.json +++ b/homeassistant/components/blink/strings.json @@ -39,8 +39,8 @@ }, "entity": { "sensor": { - "wifi_rssi": { - "name": "Wi-Fi RSSI" + "wifi_strength": { + "name": "Wi-Fi signal strength" } }, "binary_sensor": {