From 03bd9e4c963ff09e41f394a41fbf2482baa2d26c Mon Sep 17 00:00:00 2001 From: Cosimo Date: Fri, 2 Feb 2024 11:41:36 +0000 Subject: [PATCH] Add wifi sensors to other --- homeassistant/components/ring/sensor.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/ring/sensor.py b/homeassistant/components/ring/sensor.py index 386b7d02db5..1e2fa5b7f08 100644 --- a/homeassistant/components/ring/sensor.py +++ b/homeassistant/components/ring/sensor.py @@ -237,7 +237,7 @@ SENSOR_TYPES: tuple[RingSensorEntityDescription, ...] = ( RingSensorEntityDescription( key="wifi_signal_category", translation_key="wifi_signal_category", - category=["chimes", "doorbots", "authorized_doorbots", "stickup_cams"], + category=["chimes", "doorbots", "authorized_doorbots", "stickup_cams", "other"], icon="mdi:wifi", entity_category=EntityCategory.DIAGNOSTIC, cls=HealthDataRingSensor, @@ -245,7 +245,7 @@ SENSOR_TYPES: tuple[RingSensorEntityDescription, ...] = ( RingSensorEntityDescription( key="wifi_signal_strength", translation_key="wifi_signal_strength", - category=["chimes", "doorbots", "authorized_doorbots", "stickup_cams"], + category=["chimes", "doorbots", "authorized_doorbots", "stickup_cams", "other"], native_unit_of_measurement=SIGNAL_STRENGTH_DECIBELS_MILLIWATT, icon="mdi:wifi", device_class=SensorDeviceClass.SIGNAL_STRENGTH,