diff --git a/homeassistant/components/shelly/binary_sensor.py b/homeassistant/components/shelly/binary_sensor.py index e9c8e909e87..6378bb4d7c8 100644 --- a/homeassistant/components/shelly/binary_sensor.py +++ b/homeassistant/components/shelly/binary_sensor.py @@ -206,6 +206,13 @@ RPC_SENSORS: Final = { name="Smoke", device_class=BinarySensorDeviceClass.SMOKE, ), + "restart": RpcBinarySensorDescription( + key="sys", + sub_key="restart_required", + name="Restart required", + device_class=BinarySensorDeviceClass.PROBLEM, + entity_category=EntityCategory.DIAGNOSTIC, + ), }