diff --git a/homeassistant/components/lutron_caseta/__init__.py b/homeassistant/components/lutron_caseta/__init__.py index ff7ec61ecc8..40b65293f1d 100644 --- a/homeassistant/components/lutron_caseta/__init__.py +++ b/homeassistant/components/lutron_caseta/__init__.py @@ -127,6 +127,16 @@ class LutronCasetaDevice(Entity): """Return the unique ID of the device (serial).""" return str(self.serial) + @property + def device_info(self): + """Return the device info.""" + return { + "identifiers": {(DOMAIN, self.serial)}, + "name": self.name, + "manufacturer": "Lutron", + "model": self._device["model"], + } + @property def device_state_attributes(self): """Return the state attributes."""