mirror of
https://github.com/home-assistant/core.git
synced 2025-04-25 09:47:52 +00:00
Don't blow up if no sonos speakers are found
Also move the imports up so the latest pep8 doesn't complain
This commit is contained in:
parent
b01ff81b47
commit
4fa379419d
@ -15,8 +15,6 @@ media_player:
|
|||||||
import logging
|
import logging
|
||||||
import datetime
|
import datetime
|
||||||
|
|
||||||
REQUIREMENTS = ['SoCo==0.11.1']
|
|
||||||
|
|
||||||
from homeassistant.components.media_player import (
|
from homeassistant.components.media_player import (
|
||||||
MediaPlayerDevice, SUPPORT_PAUSE, SUPPORT_SEEK, SUPPORT_VOLUME_SET,
|
MediaPlayerDevice, SUPPORT_PAUSE, SUPPORT_SEEK, SUPPORT_VOLUME_SET,
|
||||||
SUPPORT_VOLUME_MUTE, SUPPORT_PREVIOUS_TRACK, SUPPORT_NEXT_TRACK,
|
SUPPORT_VOLUME_MUTE, SUPPORT_PREVIOUS_TRACK, SUPPORT_NEXT_TRACK,
|
||||||
@ -26,6 +24,9 @@ from homeassistant.helpers.event import track_utc_time_change
|
|||||||
from homeassistant.const import (
|
from homeassistant.const import (
|
||||||
STATE_IDLE, STATE_PLAYING, STATE_PAUSED, STATE_UNKNOWN)
|
STATE_IDLE, STATE_PLAYING, STATE_PAUSED, STATE_UNKNOWN)
|
||||||
|
|
||||||
|
|
||||||
|
REQUIREMENTS = ['SoCo==0.11.1']
|
||||||
|
|
||||||
_LOGGER = logging.getLogger(__name__)
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
|
||||||
SUPPORT_SONOS = SUPPORT_PAUSE | SUPPORT_VOLUME_SET | SUPPORT_VOLUME_MUTE |\
|
SUPPORT_SONOS = SUPPORT_PAUSE | SUPPORT_VOLUME_SET | SUPPORT_VOLUME_MUTE |\
|
||||||
@ -37,7 +38,13 @@ def setup_platform(hass, config, add_devices, discovery_info=None):
|
|||||||
""" Sets up the Sonos platform. """
|
""" Sets up the Sonos platform. """
|
||||||
|
|
||||||
import soco
|
import soco
|
||||||
add_devices(SonosDevice(hass, p) for p in soco.discover())
|
|
||||||
|
players = soco.discover()
|
||||||
|
if not players:
|
||||||
|
_LOGGER.warning('No Sonos speakers found. Disabling: ' + __name__)
|
||||||
|
return False
|
||||||
|
|
||||||
|
add_devices(SonosDevice(hass, p) for p in players)
|
||||||
|
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user