This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

LG smart TV
#31
You need to modify the lg_execute_command function to return the response:
Code:
function lg_execute_command(ip, key_address, prefix, msgtype, uri, payload)
  local connection_sync = require('user.websocket_client_sync')
  local url = 'ws://'..ip..':3000/'
  local resp
  local client = connection_sync.client(5)
  local noerr,msg,headers = client:connect(url)

  if noerr then
    if initial_connect(client, key_address) then
      resp = send_command_with_response(client, prefix, msgtype, uri, payload)
    end
  else
    log('No connection with TV. Probably it is switched off', url, noerr, a, text)
  end

  local was_clean,code,reason = client:close()
  log("Connection close result:", was_clean,code,reason)

  return resp
end

Then try this and see if you get anything logged:
Code:
resp = lg_execute_command(LGTV65_IP, LGTV65_KEY, "", "request", "ssap://audio/getStatus", "")
log(resp)
Reply


Messages In This Thread
LG smart TV - by Desislav - 13.02.2017, 16:53
RE: LG smart TV - by Keitz - 26.12.2017, 18:47
RE: LG smart TV - by Thinklight - 14.05.2018, 09:49
RE: LG smart TV - by Bitver - 14.05.2018, 10:01
RE: LG smart TV - by ro_ki@tut.by - 13.07.2020, 17:54
RE: LG smart TV - by khalil - 22.03.2021, 12:16
RE: LG smart TV - by CristianAgata - 06.02.2023, 18:29
RE: LG smart TV - by jose_dli - 31.10.2020, 13:02
RE: LG smart TV - by AlexLV - 05.11.2020, 18:55
RE: LG smart TV - by AlexLV - 06.11.2020, 21:29
RE: LG smart TV - by khalil - 22.03.2021, 09:23
RE: LG smart TV - by admin - 22.03.2021, 09:24
RE: LG smart TV - by admin - 22.03.2021, 12:17
RE: LG smart TV - by khalil - 22.03.2021, 12:26
RE: LG smart TV - by alexgleyzer - 02.06.2021, 19:33
RE: LG smart TV - by alexgleyzer - 21.06.2021, 17:24
RE: LG smart TV - by admin - 22.06.2021, 04:53
RE: LG smart TV - by alexgleyzer - 23.06.2021, 16:29
RE: LG smart TV - by khalil - 27.06.2021, 15:23
RE: LG smart TV - by admin - 28.06.2021, 06:37
RE: LG smart TV - by khalil - 28.06.2021, 08:18
RE: LG smart TV - by admin - 28.06.2021, 09:57
RE: LG smart TV - by mkaymak - 14.10.2022, 11:33
RE: LG smart TV - by admin - 14.10.2022, 11:39
RE: LG smart TV - by mkaymak - 14.10.2022, 11:58
RE: LG smart TV - by admin - 14.10.2022, 12:02
RE: LG smart TV - by mkaymak - 14.10.2022, 12:24
RE: LG smart TV - by admin - 14.10.2022, 12:25
RE: LG smart TV - by mkaymak - 17.10.2022, 12:19
RE: LG smart TV - by khalil - 28.02.2023, 08:46
RE: LG smart TV - by admin - 28.02.2023, 08:55
RE: LG smart TV - by khalil - 28.02.2023, 10:04
RE: LG smart TV - by admin - 28.02.2023, 10:07
RE: LG smart TV - by khalil - 28.02.2023, 10:12
RE: LG smart TV - by admin - 28.02.2023, 10:14

Forum Jump: