mirror of
https://github.com/home-assistant/core.git
synced 2025-07-23 13:17:32 +00:00
Added a new media_player platform for controlling Samsung TVs with a lan interface.
Configured like this media_player: platform: samsungtv host: <IP OF TV> name: <Name of the tv>
This commit is contained in:
parent
10f9c049bb
commit
bd475f5db1
175
homeassistant/components/media_player/samsungtv.py
Normal file
175
homeassistant/components/media_player/samsungtv.py
Normal file
@ -0,0 +1,175 @@
|
|||||||
|
"""
|
||||||
|
homeassistant.components.media_player.denon
|
||||||
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
Provides an interface to Samsung TV with a Laninterface.
|
||||||
|
|
||||||
|
For more details about this platform, please refer to the documentation at
|
||||||
|
https://home-assistant.io/components/media_player.samsungtv/
|
||||||
|
"""
|
||||||
|
import logging
|
||||||
|
import socket
|
||||||
|
from samsungctl import Remote
|
||||||
|
|
||||||
|
from homeassistant.components.media_player import (
|
||||||
|
MediaPlayerDevice, SUPPORT_PAUSE, SUPPORT_VOLUME_STEP,
|
||||||
|
SUPPORT_VOLUME_MUTE, SUPPORT_PREVIOUS_TRACK,
|
||||||
|
SUPPORT_NEXT_TRACK, SUPPORT_TURN_OFF,
|
||||||
|
DOMAIN)
|
||||||
|
from homeassistant.const import (
|
||||||
|
CONF_HOST, STATE_OFF,
|
||||||
|
STATE_ON, STATE_UNKNOWN)
|
||||||
|
|
||||||
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
SUPPORT_SAMSUNGTV = SUPPORT_PAUSE | SUPPORT_VOLUME_STEP | \
|
||||||
|
SUPPORT_VOLUME_MUTE | SUPPORT_PREVIOUS_TRACK | \
|
||||||
|
SUPPORT_NEXT_TRACK | SUPPORT_TURN_OFF
|
||||||
|
|
||||||
|
|
||||||
|
# pylint: disable=unused-argument
|
||||||
|
def setup_platform(hass, config, add_devices, discovery_info=None):
|
||||||
|
""" Sets up the Denon platform. """
|
||||||
|
if not config.get(CONF_HOST):
|
||||||
|
_LOGGER.error(
|
||||||
|
"Missing required configuration items in %s: %s",
|
||||||
|
DOMAIN,
|
||||||
|
CONF_HOST)
|
||||||
|
return False
|
||||||
|
name = config.get("name", 'Samsung TV Remote')
|
||||||
|
# Generate a config for the Samsung lib
|
||||||
|
remote_config = {
|
||||||
|
"name": "HomeAssistant",
|
||||||
|
"description": config.get("name", ''),
|
||||||
|
"id": "ha.component.samsung",
|
||||||
|
"port": config.get("port", 55000),
|
||||||
|
"host": config.get("host"),
|
||||||
|
"timeout": config.get("timeout", 0),
|
||||||
|
}
|
||||||
|
|
||||||
|
add_devices([SamsungTVDevice(name, remote_config)])
|
||||||
|
|
||||||
|
|
||||||
|
# pylint: disable=too-many-public-methods
|
||||||
|
class SamsungTVDevice(MediaPlayerDevice):
|
||||||
|
""" Represents a Denon device. """
|
||||||
|
|
||||||
|
def set_volume_level(self, volume):
|
||||||
|
pass
|
||||||
|
|
||||||
|
# pylint: disable=too-many-public-methods
|
||||||
|
|
||||||
|
def __init__(self, name, config):
|
||||||
|
self._name = name
|
||||||
|
# Assume that the TV is not muted
|
||||||
|
self._muted = False
|
||||||
|
# Assume that the TV is in Play mode
|
||||||
|
self._playing = True
|
||||||
|
self._state = STATE_UNKNOWN
|
||||||
|
self._remote = None
|
||||||
|
self._config = config
|
||||||
|
|
||||||
|
def update(self):
|
||||||
|
# Send an empty key to see if we are still connected
|
||||||
|
return self.send_key('KEY_POWER')
|
||||||
|
|
||||||
|
def get_remote(self):
|
||||||
|
""" Creates or Returns a remote control instance """
|
||||||
|
if self._remote is None:
|
||||||
|
# We need to create a new instance to reconnect.
|
||||||
|
self._remote = Remote(self._config)
|
||||||
|
|
||||||
|
return self._remote
|
||||||
|
|
||||||
|
def send_key(self, key):
|
||||||
|
""" Sends a key to the tv and handles exceptions """
|
||||||
|
try:
|
||||||
|
self.get_remote().control(key)
|
||||||
|
self._state = STATE_ON
|
||||||
|
except (Remote.UnhandledResponse, Remote.AccessDenied,
|
||||||
|
BrokenPipeError):
|
||||||
|
# We got a response so it's on.
|
||||||
|
# BrokenPipe can occur when the commands is sent to fast
|
||||||
|
self._state = STATE_ON
|
||||||
|
self._remote = None
|
||||||
|
return False
|
||||||
|
except (Remote.ConnectionClosed, Remote.ConnectionClosed,
|
||||||
|
socket.timeout, TimeoutError, OSError):
|
||||||
|
self._state = STATE_OFF
|
||||||
|
self._remote = None
|
||||||
|
return False
|
||||||
|
except Remote.AccessDenied:
|
||||||
|
self._state = STATE_ON
|
||||||
|
return False
|
||||||
|
|
||||||
|
return True
|
||||||
|
|
||||||
|
@property
|
||||||
|
def name(self):
|
||||||
|
""" Returns the name of the device. """
|
||||||
|
return self._name
|
||||||
|
|
||||||
|
@property
|
||||||
|
def state(self):
|
||||||
|
return self._state
|
||||||
|
|
||||||
|
@property
|
||||||
|
def is_volume_muted(self):
|
||||||
|
""" Boolean if volume is currently muted. """
|
||||||
|
return self._muted
|
||||||
|
|
||||||
|
@property
|
||||||
|
def supported_media_commands(self):
|
||||||
|
""" Flags of media commands that are supported. """
|
||||||
|
return SUPPORT_SAMSUNGTV
|
||||||
|
|
||||||
|
def turn_off(self):
|
||||||
|
""" turn_off media player. """
|
||||||
|
self.send_key("KEY_POWEROFF")
|
||||||
|
|
||||||
|
def volume_up(self):
|
||||||
|
""" volume_up media player. """
|
||||||
|
self.send_key("KEY_VOLUP")
|
||||||
|
|
||||||
|
def volume_down(self):
|
||||||
|
""" volume_down media player. """
|
||||||
|
self.send_key("KEY_VOLDOWN")
|
||||||
|
|
||||||
|
def mute_volume(self, mute):
|
||||||
|
self.send_key("KEY_MUTE")
|
||||||
|
|
||||||
|
def media_play_pause(self):
|
||||||
|
""" Simulate play pause media player. """
|
||||||
|
if self._playing:
|
||||||
|
self.media_pause()
|
||||||
|
else:
|
||||||
|
self.media_play()
|
||||||
|
|
||||||
|
def media_play(self):
|
||||||
|
""" media_play media player. """
|
||||||
|
self._playing = True
|
||||||
|
self.send_key("KEY_PLAY")
|
||||||
|
|
||||||
|
def media_pause(self):
|
||||||
|
""" media_pause media player. """
|
||||||
|
self._playing = False
|
||||||
|
self.send_key("KEY_PAUSE")
|
||||||
|
|
||||||
|
def media_next_track(self):
|
||||||
|
""" Send next track command. """
|
||||||
|
self.send_key("KEY_FF")
|
||||||
|
|
||||||
|
def media_previous_track(self):
|
||||||
|
self.send_key("KEY_REWIND")
|
||||||
|
|
||||||
|
def media_seek(self, position):
|
||||||
|
raise NotImplementedError()
|
||||||
|
|
||||||
|
def turn_on(self):
|
||||||
|
""" turn the media player on. """
|
||||||
|
self.send_key("KEY_POWERON")
|
||||||
|
|
||||||
|
def play_media(self, media_type, media_id):
|
||||||
|
pass
|
||||||
|
|
||||||
|
def play_youtube(self, media_id):
|
||||||
|
pass
|
@ -95,6 +95,9 @@ plexapi==1.1.0
|
|||||||
# homeassistant.components.media_player.sonos
|
# homeassistant.components.media_player.sonos
|
||||||
SoCo==0.11.1
|
SoCo==0.11.1
|
||||||
|
|
||||||
|
# homeassistant.components.media_player.samsungtv
|
||||||
|
samsungctl==0.5.1
|
||||||
|
|
||||||
# homeassistant.components.modbus
|
# homeassistant.components.modbus
|
||||||
https://github.com/bashwork/pymodbus/archive/d7fc4f1cc975631e0a9011390e8017f64b612661.zip#pymodbus==1.2.0
|
https://github.com/bashwork/pymodbus/archive/d7fc4f1cc975631e0a9011390e8017f64b612661.zip#pymodbus==1.2.0
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user