I have a Frame TV and can verify Ollo69 component works flawlessly with my 2020 Frame. I can turn off and on and also switch between art mode (via custom switch) in HA.
Thanks Ollo!
I have a Frame TV and can verify Ollo69 component works flawlessly with my 2020 Frame. I can turn off and on and also switch between art mode (via custom switch) in HA.
Thanks Ollo!
how are you getting it to switch into art mode?
I use a custom switch, see below for the setup i have in configuration.yaml.
switch:
hope that helps
argh, i guess send_key/KEY_POWER doesnt work on 2019 models
Sorry about not being to find a answer as I suppose itâs somewhere to be found.
I have a Q9fn with native HA integration which seems to work as expected. The only data I really need is however not available: media player play/pause/stopped states. Through searching Iâve noticed comments about more data being available through alternative integrations, but didnât specifically see any comments mention additional states. Are these states available through use of any of the other integrations? Or in combination with Smarthings?
âŠor is it possible to get mentioned state from individual applications? Noticed that some integrations offer application specific data, but I didnât see any information about play/pause states.
Good question⊠I canât see why donât all these projects couldnât work more closely together as a collective and post TV model compatibility lists.
This used to be the case on the HA plugin but some new developers got on board and deleted this list
FYI I have a Frame TV purchased in 2017 and I was able to make the above template sort of work. You obviously need to adjust the indentation and the single quotes (I am not proficient with YAML and it took me a while to figure out the right syntax).
The switch itself does not work as is in my case if you add it as a lovelace card (again not sure if this is expected for template switches or just an issue with the TV itself), but I included it in an automation to turn on art mode and it does the job provided that the tv is on. So I start the automation with a turn_on command and a 5s delay that handles all situations.
I can now have art mode turn itself on automatically every morning which my tv was reluctant to do consistently before.
Hi guys, I am just getting started with Home Assistant on a RPI4B. Iâve focused on my plants and house climate and big parts is up and running, love it!
I have 4 Samsung TVs that Iâve done nothing about. One QLED Q65Q70 and three older Samsungâs from 2013. The last couple of days Iâve tried to get some kind of reaction from them, especially starting with the older two.
Two of them from 2013 show up in HA:
My latest attempt look like this:
media_player:
- platform: samsungtv_custom
host: 192.168.86.20
mac: 5c:a3:9d:[intentionally omitted]:c8:d6
port: 8001
sourcelist: '{"PlayStation": "KEY_HDMI1", "RaspberryPi": "KEY_HDMI2", "Chromecast": "KEY_HDMI3"}'
name: Samsung Vardagsrummet
SamsungTV Custom is installed through HACS. It just looks like this and I get zero reaction when pushing the button:
Anyone got any tips on what to do to move forward with this?
I have an older samsung tv and had a lot of trial and error setting it up. I had to use the ctl_beta and get the token and ID
The token get be fetched via https://github.com/eclair4151/SmartCrypto The id can be fetched vie http://IP_ADDRESS:8001/api/v2/
My config looks like this
- platform: samsungtv_custom
name: Bedroom TV
host: 10.10.10.10
port: 8001
mac: 00:00:00:00:00
protocol: ctl_beta
id: xxxxxxxxxx
token: xxxxxxxxxxxxxx:1
I am able to control power, volume and source now. I hope this helps
Many thanks!
I couldnât get any torken. I get âNo module named âcommand_encryptionââ with SmartCrypto and âNo module named âPySmartCryptoââ with GetToken. But my TVs are 2013âs model, maybe they donât have a Token? I also couldnât get the deviceid with the available options for that (this http://IP_ADDRESS:8001/api/v2/ and two other versions of it). They just didnât connect.
Anyway, I could connect all three super easy with this:
All I had to do was download the files into the right folder in hassio and it worked instantly. Almost fell of a chair after messing around with worse options for days.
I can also change sound, source and turn off. They arenât connected to ethernet, I think they maybe have to be that. But its better than nothing!
Do you may show full config of this section?
I got this error, and i donât understand, when
(venv_3.9.2) homeassistant@orangepiplus2e:/srv/homeassistant/venv_3.9.2$ hass --script check_config
Testing configuration at /home/homeassistant/.homeassistant
Failed config
media_player.samsungtv_custom:
- Invalid config for [media_player.samsungtv_custom]: [token] is an invalid option for [media_player.samsungtv_custom]. Check: media_player.samsungtv_custom->token. (See ?, line ?).
- platform: samsungtv_custom
host: 192.168.0.104
id: aceeeed0-fff7-4538-a530-ef1cf96677f8
mac: cc:b1:1a:be:b3:6b
port: 8001
protocol: ctl_beta
sourcelist: {"RaspberryPi": "KEY_HDMI2", "Chromecast": "KEY_HDMI3"}
token: af7071f753960e5c9c1baec56c71e850:2
Successful config (partial)
media_player.samsungtv_custom:
with my config:
media_player:
platform: samsungtv_custom
host: 192.168.0.104
port: 8001
mac: cc:b1:1a:be:b3:6b
sourcelist: '{"RaspberryPi": "KEY_HDMI2", "Chromecast": "KEY_HDMI3"}'
protocol: ctl_beta
token: af7071f753960e5c9c1baec56c71e850:2
id: aceeeed0-fff7-4538-a530-ef1cf96677f8
My TV - UE50J6240
It looks like your indentation is wrong. You can try copying mine above and see if that works. Remove any extra attributes until you get it working
Donât work.
I get âSafe Modeâ status, or error about token, then if iâm delete token, i get error about id
Can you send on the errors from your logs?
It look like there might be an issue with the custom component. Did you copy all of the contents from github?
You need to edit the media_player.py file in the samsungtv_custom folder under custom_components
Go to line 65/66 and change
CONF_ID = ""
CONF_TOKEN = ""
to
CONF_ID = "id"
CONF_TOKEN = "token"
Thank you! Itâs working for me.
But now i donât may set lovelace panel for media player
http://SSMaker.ru/7dbc8603/
Has anyone succeeded to turn on a F6400 model via WOL or otherwise? I can control volume, mute/unmute, select source and turn off, but not the TV turn on⊠Thanks in advance!