diff --git a/homeassistant/components/shelly/binary_sensor.py b/homeassistant/components/shelly/binary_sensor.py index a5265241da3..99f8373ad3b 100644 --- a/homeassistant/components/shelly/binary_sensor.py +++ b/homeassistant/components/shelly/binary_sensor.py @@ -190,6 +190,12 @@ RPC_SENSORS: Final = { entity_category=EntityCategory.DIAGNOSTIC, supported=lambda status: status.get("apower") is not None, ), + "smoke": RpcBinarySensorDescription( + key="smoke", + sub_key="alarm", + name="Smoke", + device_class=BinarySensorDeviceClass.SMOKE, + ), }