diff --git a/homeassistant/components/media_player/sonos.py b/homeassistant/components/media_player/sonos.py index c4309519e36..4fc6b8b0954 100644 --- a/homeassistant/components/media_player/sonos.py +++ b/homeassistant/components/media_player/sonos.py @@ -388,6 +388,18 @@ class SonosDevice(MediaPlayerDevice): """Return the name of the device.""" return self._name + @property + def device_info(self): + """Return information about the device.""" + return { + 'identifiers': { + (SONOS_DOMAIN, self._unique_id) + }, + 'name': self._name, + 'model': self._model.replace("Sonos ", ""), + 'manufacturer': 'Sonos', + } + @property @soco_coordinator def state(self):