Ape / samsungctl

Remote control Samsung televisions via a TCP/IP connection
MIT License
711 stars 191 forks source link

UE55LS003 don't work #67

Open openmotion opened 6 years ago

openmotion commented 6 years ago

hello i have this message : Error : Connection refused when i execute the command : python -m samsungctl -i --host 192.168.1.40 --method websocket --name myremote

is it normal ? my TV (the Frame) is compatible ? thanks

RiRomain commented 6 years ago

Hi,

Can you check if the URL http://192.168.1.40:8001/api/v2/ is available?

ozzyst commented 5 years ago

Hello, I have TV of UE series and I have trouble with it. Link is aviable 8001/api/v2/ Do you have idea?

import samsungctl
import time
config = {
    "name": "samsungctl",
    "description": "PC",
    "id": "1",
    "host": "192.168.1.101",
    "port": 8001,
    "method": "legacy",
    "timeout": 5,
}
with samsungctl.Remote(config) as remote:
    remote.control("KEY_MENU")

Traceback (most recent call last):
  File "<input>", line 14, in <module>
  File "/home/slosev/PycharmProjects/torrent/venv/lib/python3.6/site-packages/samsungctl/remote.py", line 9, in __init__
    self.remote = RemoteLegacy(config)
  File "/home/slosev/PycharmProjects/torrent/venv/lib/python3.6/site-packages/samsungctl/remote_legacy.py", line 32, in __init__
    self._read_response(True)
  File "/home/slosev/PycharmProjects/torrent/venv/lib/python3.6/site-packages/samsungctl/remote_legacy.py", line 77, in _read_response
    raise exceptions.ConnectionClosed()
samsungctl.exceptions.ConnectionClosed

Should I write an ID in the configuration? What is ID?

KJ-Waller commented 3 years ago

Was this issue ever fixed? I have the same TV and I'm getting either "BlockingIOError [Errno 115] Operation now in progress" or "ConnectionClosed" error. I've tried both "legacy" and "websocket".