diff --git a/homeassistant/components/homematicip_cloud/device.py b/homeassistant/components/homematicip_cloud/device.py index 9c335befda4..6a4f958387e 100644 --- a/homeassistant/components/homematicip_cloud/device.py +++ b/homeassistant/components/homematicip_cloud/device.py @@ -61,6 +61,11 @@ class HomematicipGenericDevice(Entity): """Device available.""" return not self._device.unreach + @property + def unique_id(self): + """Return a unique ID.""" + return "{}_{}".format(self.__class__.__name__, self._device.id) + @property def icon(self): """Return the icon."""