Samsung Smart TV - No control?

I’m having the exact same issue on my MU6070. Created the folder structure under the /config folder but when I rename the component like below, the check config just spins and HA wont restart.

media_player:

  • platform: samsungtv_custom
    host: 192.168.1.3
    port: 8001
    name: Living Room TV
    mac: REDACTED

I was able to get it to power on but not power off or do anything else. When i use the standard component samsungtv I get an Invalid OPCODE error which seems to have changed recently. I’m at the latest vers of HA at 91.3

I’ve gotten most of everything else in HA to work but really struggling having it control this TV. Any suggestions or help would be much appreciated.

Anyone getting:

“Integration samsungtv_custom not found when trying to verify its media_player platform.”

… after upgrading to the latest 0.92.0?

I’ve only been able to turn it on with the WoL. I was able to setup SmartThings integration so I can now sometimes turn it off as well but its a separate switch. It also has sensors for Volume, Channel, and Source, but they only update if you go into the app and refresh the settings there. Then it updates in HA.

I just put in an order for a Broadlink RM Mini3 that Im going to install in my livingroom to take care of this. its pretty crappy that Samsung nerfed the webhooks with the firmware update. But im tired of waiting for them to make any changes to get it back. Plus this way I can control any other IR based devices as well ultimately via voice through Google Mini’s.

Love to hear about anyone else’s setup or if you were able to get true TCP/IP control of your Samsung TV through the samsungctl component. So far all I get is " Invalid OpCode" or nothing at all.

I have a Samsung 6 Series 58Inch un58mu6070

1 Like

I have exactly the same issue after upgrading to .92

hello to all
i am a samsung TV 49KU6500

i am the following code… i can change volume and turn off…but cannot turn on…
is there any solution?
thanks

  - platform: samsungtv
    host: 192.168.1.73
    port: 8001
    mac: C0:97:27:61:26:8E 
    name: TV da Sala

I couldn’t figure out why it doesn’t work so I merged the original small piece of code with the full home assistant samsung media player and now all works fine.

If I have time I’ll try to figure it out later. Here it is anyway. It updates status properly and you also have the send_key service.

"""Support for interface with an Samsung TV."""
import asyncio
from datetime import timedelta
import logging
import socket

import voluptuous as vol

# added DOMAIN
from homeassistant.components.media_player import (
    MediaPlayerDevice, PLATFORM_SCHEMA, DOMAIN)
from homeassistant.components.media_player.const import (
    MEDIA_TYPE_CHANNEL, SUPPORT_NEXT_TRACK, SUPPORT_PAUSE,
    SUPPORT_PLAY, SUPPORT_PLAY_MEDIA, SUPPORT_PREVIOUS_TRACK, SUPPORT_TURN_OFF,
    SUPPORT_TURN_ON, SUPPORT_VOLUME_MUTE, SUPPORT_VOLUME_STEP)
# added ATTR_ENTITY_ID
from homeassistant.const import (
    CONF_HOST, CONF_MAC, CONF_NAME, CONF_PORT, CONF_TIMEOUT, STATE_OFF,
    STATE_ON, ATTR_ENTITY_ID)
import homeassistant.helpers.config_validation as cv
from homeassistant.util import dt as dt_util

_LOGGER = logging.getLogger(__name__)

# added
SAMSUNG_TV_CUSTOM_DATA = 'samsungtv_custom'
# added
SERVICE_KEY = 'send_key'

# added
# Service call validation schemas
ATTR_KEY = 'key_code'

# added
SAMSUNG_TV_CUSTOM_KEY_SCHEMA = vol.Schema({
    vol.Required(ATTR_ENTITY_ID): cv.entity_ids,
    vol.Required(ATTR_KEY): cv.string,
})

DEFAULT_NAME = 'Samsung TV Remote'
DEFAULT_PORT = 55000
DEFAULT_TIMEOUT = 1

KEY_PRESS_TIMEOUT = 1.2
KNOWN_DEVICES_KEY = 'samsungtv_known_devices'

SUPPORT_SAMSUNGTV = SUPPORT_PAUSE | SUPPORT_VOLUME_STEP | \
    SUPPORT_VOLUME_MUTE | SUPPORT_PREVIOUS_TRACK | \
    SUPPORT_NEXT_TRACK | SUPPORT_TURN_OFF | SUPPORT_PLAY | SUPPORT_PLAY_MEDIA

PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({
    vol.Required(CONF_HOST): cv.string,
    vol.Optional(CONF_NAME, default=DEFAULT_NAME): cv.string,
    vol.Optional(CONF_PORT, default=DEFAULT_PORT): cv.port,
    vol.Optional(CONF_MAC): cv.string,
    vol.Optional(CONF_TIMEOUT, default=DEFAULT_TIMEOUT): cv.positive_int,
})


def setup_platform(hass, config, add_entities, discovery_info=None):
    """Set up the Samsung TV platform."""
    known_devices = hass.data.get(KNOWN_DEVICES_KEY)
    if known_devices is None:
        known_devices = set()
        hass.data[KNOWN_DEVICES_KEY] = known_devices

    if SAMSUNG_TV_CUSTOM_DATA not in hass.data:
        hass.data[SAMSUNG_TV_CUSTOM_DATA] = []

    uuid = None
    # Is this a manual configuration?
    if config.get(CONF_HOST) is not None:
        host = config.get(CONF_HOST)
        port = config.get(CONF_PORT)
        name = config.get(CONF_NAME)
        mac = config.get(CONF_MAC)
        timeout = config.get(CONF_TIMEOUT)
    elif discovery_info is not None:
        tv_name = discovery_info.get('name')
        model = discovery_info.get('model_name')
        host = discovery_info.get('host')
        name = "{} ({})".format(tv_name, model)
        port = DEFAULT_PORT
        timeout = DEFAULT_TIMEOUT
        mac = None
        udn = discovery_info.get('udn')
        if udn and udn.startswith('uuid:'):
            uuid = udn[len('uuid:'):]
    else:
        _LOGGER.warning("Cannot determine device")
        return

    # Only add a device once, so discovered devices do not override manual
    # config.
    ip_addr = socket.gethostbyname(host)
    if ip_addr not in known_devices:
        known_devices.add(ip_addr)
        # modified
        device = [SamsungTVDevice(host, port, name, timeout, mac, uuid)]
        # modified
        add_entities(device)
        # added
        hass.data[SAMSUNG_TV_CUSTOM_DATA].append(device[0])

        _LOGGER.info("Samsung TV %s:%d added as '%s'", host, port, name)
    else:
        _LOGGER.info("Ignoring duplicate Samsung TV %s:%d", host, port)

    def service_handle(service):
        _LOGGER.debug("service_handle called for %s with %s", service.service, service.data)
        entity_ids = service.data.get('entity_id')
        devices = hass.data[SAMSUNG_TV_CUSTOM_DATA]

        for device in devices:
            if device.entity_id in entity_ids:
                if service.service == SERVICE_KEY:
                    device.send_key(service.data.get(ATTR_KEY))

                    device.schedule_update_ha_state(True)

    hass.services.register(
        DOMAIN, SERVICE_KEY, service_handle,
        schema=SAMSUNG_TV_CUSTOM_KEY_SCHEMA)

class SamsungTVDevice(MediaPlayerDevice):
    """Representation of a Samsung TV."""

    def __init__(self, host, port, name, timeout, mac, uuid):
        """Initialize the Samsung device."""
        from samsungctl import exceptions
        from samsungctl import Remote
        import wakeonlan
        # Save a reference to the imported classes
        self._exceptions_class = exceptions
        self._remote_class = Remote
        self._name = name
        self._mac = mac
        self._uuid = uuid
        self._wol = wakeonlan
        # Assume that the TV is not muted
        self._muted = False
        # Assume that the TV is in Play mode
        self._playing = True
        self._state = None
        self._remote = None
        # Mark the end of a shutdown command (need to wait 15 seconds before
        # sending the next command to avoid turning the TV back ON).
        self._end_of_power_off = None
        # Generate a configuration for the Samsung library
        self._config = {
            'name': 'HomeAssistant',
            'description': name,
            'id': 'ha.component.samsung',
            'port': port,
            'host': host,
            'timeout': timeout,
        }

        if self._config['port'] == 8001:
            self._config['method'] = 'websocket'
        else:
            self._config['method'] = 'legacy'

    def update(self):
        """Update state of device."""
        self.send_key("KEY")

    def get_remote(self):
        """Create or return a remote control instance."""
        if self._remote is None:
            # We need to create a new instance to reconnect.
            self._remote = self._remote_class(self._config)

        return self._remote

    def send_key(self, key):
        """Send a key to the tv and handles exceptions."""
        if self._power_off_in_progress() \
                and key not in ('KEY_POWER', 'KEY_POWEROFF'):
            _LOGGER.info("TV is powering off, not sending command: %s", key)
            return
        try:
            # recreate connection if connection was dead
            retry_count = 1
            for _ in range(retry_count + 1):
                try:
                    self.get_remote().control(key)
                    break
                except (self._exceptions_class.ConnectionClosed,
                        BrokenPipeError):
                    # BrokenPipe can occur when the commands is sent to fast
                    self._remote = None
            self._state = STATE_ON
        except (self._exceptions_class.UnhandledResponse,
                self._exceptions_class.AccessDenied):
            # We got a response so it's on.
            self._state = STATE_ON
            self._remote = None
            _LOGGER.debug("Failed sending command %s", key, exc_info=True)
            return
        except OSError:
            self._state = STATE_OFF
            self._remote = None
        if self._power_off_in_progress():
            self._state = STATE_OFF

    def _power_off_in_progress(self):
        return self._end_of_power_off is not None and \
               self._end_of_power_off > dt_util.utcnow()

    @property
    def unique_id(self) -> str:
        """Return the unique ID of the device."""
        return self._uuid

    @property
    def name(self):
        """Return the name of the device."""
        return self._name

    @property
    def state(self):
        """Return the state of the device."""
        return self._state

    @property
    def is_volume_muted(self):
        """Boolean if volume is currently muted."""
        return self._muted

    @property
    def supported_features(self):
        """Flag media player features that are supported."""
        if self._mac:
            return SUPPORT_SAMSUNGTV | SUPPORT_TURN_ON
        return SUPPORT_SAMSUNGTV

    def turn_off(self):
        """Turn off media player."""
        self._end_of_power_off = dt_util.utcnow() + timedelta(seconds=15)

        if self._config['method'] == 'websocket':
            self.send_key('KEY_POWER')
        else:
            self.send_key('KEY_POWEROFF')
        # Force closing of remote session to provide instant UI feedback
        try:
            self.get_remote().close()
            self._remote = None
        except OSError:
            _LOGGER.debug("Could not establish connection.")

    def volume_up(self):
        """Volume up the 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):
        """Send mute command."""
        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):
        """Send play command."""
        self._playing = True
        self.send_key('KEY_PLAY')

    def media_pause(self):
        """Send media pause command to 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):
        """Send the previous track command."""
        self.send_key('KEY_REWIND')

    async def async_play_media(self, media_type, media_id, **kwargs):
        """Support changing a channel."""
        if media_type != MEDIA_TYPE_CHANNEL:
            _LOGGER.error('Unsupported media type')
            return

        # media_id should only be a channel number
        try:
            cv.positive_int(media_id)
        except vol.Invalid:
            _LOGGER.error('Media ID must be positive integer')
            return

        for digit in media_id:
            await self.hass.async_add_job(self.send_key, 'KEY_' + digit)
            await asyncio.sleep(KEY_PRESS_TIMEOUT, self.hass.loop)

    def turn_on(self):
        """Turn the media player on."""
        if self._mac:
            self._wol.send_magic_packet(self._mac)
        else:
            self.send_key('KEY_POWERON')
4 Likes

i would like to try this,
but dont lnow where to write this file.
please

I think this is because you are using hass.io or docker? and Joseph_Levy is probably using the homeassistant git package where he can edit /homeassistant/components/samsungtv/media_player.py

I’m having the exact same issue after upgrading from 0.87.1 to 0.92.2
seems annoying that it was working in 91.0?

I know its bad practice, but if someone could point me in the right direction of how to directly edit components in hass_io that would be great. Until we can work out a way to get the custom_component working again of course.

I’m running the homeassistant/qemux86-64-homeassistant docker image.

1 Like

Seems like lots of changes in Samsung TV’s controls over the last few years. Coupled with lack of transparency from Samsung. I returned a Samsung for an LG…

1 Like

Yea its a shame. They had been superior in picture and apps for a long time.

I was so close to having such a nice automation setup for media and content presets;

rest_command:
livingroom_tv_app_netflix:
method: POST
url: ‘http://10.10.2.103:8080/ws/app/Netflix
livingroom_tv_app_youtube:
method: POST
url: ‘http://10.10.2.103:8080/ws/app/YouTube
livingroom_tv_app_plex:
method: POST
url: ‘http://10.10.2.103:8001/api/v2/applications/kIciSQlYEM.plex

Then using samsungtv_custom

telly_youtube:
alias: Telly YouTube
sequence:

  • data: {}
    service: rest_command.livingroom_tv_app_youtube
    telly_netflix:
    alias: Telly Netflix
    sequence:
  • data: {}
    service: rest_command.livingroom_tv_app_netflix
    telly_plex:
    alias: Telly Plex
    sequence:
  • data: {}
    service: rest_command.livingroom_tv_app_plex
    telly_tv:
    alias: Telly Tv
    sequence:
  • data:
    entity_id: media_player.sco
    key_code: KEY_GUIDE
    service: media_player.send_key
  • delay:
    seconds: 03
  • data:
    entity_id: media_player.sco
    key_code: KEY_ENTER
    service: media_player.send_key

To play on Plex

Even with even more stuff like FlexTV

To play on Netflicks and Youtube

Was going to write this up elsewhere, but maybe it will help out someone here.

I managed to get an indication on whether Youtube or Netflix was running by using the DIAL id. Couldn’t find any other apps, unfortunately (such as Prime or what not).

Turning off the apps dont work on my tv, but maybe someone else will have some luck.

switch:
 - platform: command_line 
    switches:
      samsung_netflix:
        command_on: '/usr/bin/curl -X POST http://<IP OF TV>:8001/ws/apps/Netflix'
        command_off: '/usr/bin/curl -X DELETE http://<IP OF TV>:8001/ws/apps/Netflix'
        command_state: '/usr/bin/curl --silent -X GET <IP OF TV>:8001/ws/apps/Netflix | grep -oP "(?<=state>).*?(?=</state>)"'
        value_template: '{{ value == "running"}}'
      
      samsung_youtube:
        command_on: '/usr/bin/curl -X POST http://<IP OF TV>:8001/ws/apps/YouTube'
        command_off: '/usr/bin/curl --silent -X DELETE http://<IP OF TV>:8001/ws/apps/YouTube'
        command_state: '/usr/bin/curl --silent -X GET <IP OF TV>:8001/ws/apps/YouTube | grep -oP "(?<=state>).*?(?=</state>)"'
        value_template: '{{ value == "running"}}'
1 Like

Is there anyway to grab status of hdmi on Samsung tv.
Means can we grab different status of hdmi
Like is it
HDMI 1 or HDMI 2 or HDMI 3 …

Please guide.
Thanks

Dear,
I wanted the status of HDMI which is running on TV and not codes

Hey guys, any chance HA can know when media starts playing on the TV (netflix, plex etc)?

Are there any way to play a video on the tv? Either from local (usb/network) or streaming for example a youtube video? I tried the media_extractor component but didn’t get it work. I want to trigger a video to play from HA.

with newer version provided by homeassistant
options to select HDMI1, HDMI2, HDMI3, HDMI4, AV1, ect… are missing,
anyone here to get it.
Please guide
thanks

Yeah they are missing…but maybe a workaround:
If you can use samsungctl directly (You’ll need to know the location of the samsungctl bin file) and have an older TV using port 55000, you can make use of the samsungctl CLI:

"<full path name>/samsungctl --host <samsung tv IP address> --port 55000 KEY_SOURCE <source>"

one for each <source> is HDMI1, or HDMI2, etc…

I have setup mine using command line switch, and a scene to call to turn a switch on or off. You could do the same where switch 1 turn on (use HDMI1) or off (use HDMI2), switch 2 turn on (use AV1) or off (use etc.)

seems quite difficult for me to do this.
any easy way to go with
:wink:

So is there any quick and short instructions + latests files to use to fix samsung TV access problem?