Introducing media_player yamaha_multicast

pull/9258/head
Jan Almeroth 2017-09-01 23:15:27 +02:00
parent 639eb81aef
commit a4fb64b53a
2 changed files with 209 additions and 0 deletions

View File

@ -384,6 +384,7 @@ omit =
homeassistant/components/media_player/vlc.py
homeassistant/components/media_player/volumio.py
homeassistant/components/media_player/yamaha.py
homeassistant/components/media_player/yamaha_musiccast.py
homeassistant/components/mycroft.py
homeassistant/components/notify/aws_lambda.py
homeassistant/components/notify/aws_sns.py

View File

@ -0,0 +1,208 @@
"""
Example for configuration.yaml
media_player:
- platform: yamaha_musiccast
name: "Living Room"
host: 192.168.xxx.xx
port: 5005
"""
import logging
import voluptuous as vol
import homeassistant.helpers.config_validation as cv
from homeassistant.const import (
CONF_NAME, CONF_HOST, CONF_PORT,
STATE_UNKNOWN, STATE_ON
)
from homeassistant.components.media_player import (
MediaPlayerDevice, MEDIA_TYPE_MUSIC, PLATFORM_SCHEMA,
SUPPORT_PAUSE, SUPPORT_PREVIOUS_TRACK, SUPPORT_NEXT_TRACK,
SUPPORT_TURN_ON, SUPPORT_TURN_OFF, SUPPORT_PLAY,
SUPPORT_VOLUME_SET, SUPPORT_VOLUME_MUTE,
SUPPORT_SELECT_SOURCE, SUPPORT_STOP
)
_LOGGER = logging.getLogger(__name__)
SUPPORTED_FEATURES = (
SUPPORT_PLAY | SUPPORT_PAUSE | SUPPORT_STOP |
SUPPORT_PREVIOUS_TRACK | SUPPORT_NEXT_TRACK |
SUPPORT_TURN_ON | SUPPORT_TURN_OFF |
SUPPORT_VOLUME_SET | SUPPORT_VOLUME_MUTE |
SUPPORT_SELECT_SOURCE
)
REQUIREMENTS = ['pymusiccast==0.0.5']
DEFAULT_NAME = "Yamaha Receiver"
DEFAULT_PORT = 5005
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({
vol.Optional(CONF_NAME, default=DEFAULT_NAME): cv.string,
vol.Required(CONF_HOST): cv.string,
vol.Optional(CONF_PORT, default=DEFAULT_PORT): cv.positive_int,
})
def setup_platform(hass, config, add_devices, discovery_info=None):
import pymusiccast
_LOGGER.debug("config: {} ({})".format(config, type(config)))
name = config.get(CONF_NAME)
host = config.get(CONF_HOST)
port = config.get(CONF_PORT)
mcDevice = pymusiccast.mcDevice(host, udp_port=port)
_LOGGER.debug("mcDevice: {} / UDP Port: {}".format(mcDevice, port))
add_devices([YamahaDevice(mcDevice, name)], True)
class YamahaDevice(MediaPlayerDevice):
def __init__(self, mcDevice, name):
self._mcDevice = mcDevice
self._name = name
self._power = STATE_UNKNOWN
self._volume = 0
self._volumeMax = 0
self._mute = False
self._source = None
self._source_list = []
self._status = STATE_UNKNOWN
self._media_status = None
self._mcDevice.setYamahaDevice(self)
@property
def name(self):
return self._name
@property
def state(self):
if self._power == STATE_ON and self._status is not STATE_UNKNOWN:
return self._status
else:
return self._power
@property
def should_poll(self):
"""Push an update after each command."""
return True
@property
def is_volume_muted(self):
"""Boolean if volume is currently muted."""
return self._mute
@property
def volume_level(self):
"""Volume level of the media player (0..1)."""
return self._volume
@property
def supported_features(self):
"""Flag of features that are supported."""
return SUPPORTED_FEATURES
@property
def source(self):
"""Return the current input source."""
return self._source
@property
def source_list(self):
"""List of available input sources."""
return self._source_list
@property
def media_content_type(self):
if self._media_status is None:
return None
else:
return MEDIA_TYPE_MUSIC
@property
def media_duration(self):
return self._media_status.media_duration if self._media_status else None
@property
def media_image_url(self):
return self._media_status.media_image_url if self._media_status else None
@property
def media_artist(self):
return self._media_status.media_artist if self._media_status else None
@property
def media_album(self):
return self._media_status.media_album if self._media_status else None
@property
def media_track(self):
return self._media_status.media_track if self._media_status else None
@property
def media_title(self):
return self._media_status.media_title if self._media_status else None
def update(self):
_LOGGER.debug("update: {}".format(self.entity_id))
if not self.entity_id: # call from constructor setup_platform()
_LOGGER.debug("First run")
self._mcDevice.updateStatus(push=False)
else: # call from regular polling
# updateStatus_timer was set before
if self._mcDevice.updateStatus_timer:
_LOGGER.debug("is_alive: {}".format(self._mcDevice.updateStatus_timer.is_alive()))
# can happen if e.g. computer was suspended, while hass was running
if not self._mcDevice.updateStatus_timer.is_alive():
_LOGGER.debug("Reinitializing")
self._mcDevice.updateStatus()
def turn_on(self):
_LOGGER.debug("Turn device: on")
self._mcDevice.setPower(True)
def turn_off(self):
_LOGGER.debug("Turn device: off")
self._mcDevice.setPower(False)
def media_play(self):
_LOGGER.debug("Play")
self._mcDevice.setPlayback("play")
def media_pause(self):
_LOGGER.debug("Pause")
self._mcDevice.setPlayback("pause")
def media_stop(self):
_LOGGER.debug("Stop")
self._mcDevice.setPlayback("stop")
def media_previous_track(self):
_LOGGER.debug("Previous")
self._mcDevice.setPlayback("previous")
def media_next_track(self):
_LOGGER.debug("Next")
self._mcDevice.setPlayback("next")
def mute_volume(self, mute):
"""Send mute command."""
_LOGGER.debug("Mute volume: {}".format(mute))
self._mcDevice.setMute(mute)
def set_volume_level(self, volume):
"""Set volume level, range 0..1."""
_LOGGER.debug("Volume level: {} / {}".format(volume, volume * self._volumeMax))
self._mcDevice.setVolume(volume * self._volumeMax)
def select_source(self, source):
_LOGGER.debug("select_source: {}".format(source))
self._status = STATE_UNKNOWN
self._mcDevice.setInput(source)