diff --git a/homeassistant/components/apple_tv/__init__.py b/homeassistant/components/apple_tv/__init__.py index 6460a501992..6a78e0b451c 100644 --- a/homeassistant/components/apple_tv/__init__.py +++ b/homeassistant/components/apple_tv/__init__.py @@ -151,6 +151,13 @@ class AppleTVEntity(Entity): """No polling needed for Apple TV.""" return False + @property + def device_info(self): + """Return the device info.""" + return { + "identifiers": {(DOMAIN, self._identifier)}, + } + class AppleTVManager: """Connection and power manager for an Apple TV.