From 15539536ad48d06ef5fe5c226f93b6d97e6885f5 Mon Sep 17 00:00:00 2001 From: Frederik Gladhorn Date: Tue, 26 May 2020 00:50:19 +0200 Subject: [PATCH] Use speaker-multiple icon for NAD receiver (#34572) By default media players get a chrome cast icon, which feels quite wrong for my old style amplifier that doesn't have any connection to the rest of the word, except for a RS232 port. --- homeassistant/components/nad/media_player.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/homeassistant/components/nad/media_player.py b/homeassistant/components/nad/media_player.py index 2d9afbb7541..066088ab994 100644 --- a/homeassistant/components/nad/media_player.py +++ b/homeassistant/components/nad/media_player.py @@ -129,6 +129,11 @@ class NAD(MediaPlayerEntity): """Return the state of the device.""" return self._state + @property + def icon(self): + """Return the icon for the device.""" + return "mdi:speaker-multiple" + @property def volume_level(self): """Volume level of the media player (0..1)."""