You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was using this node for some years with my 8 years old LG TV, recently I bough new LG TV 2021 (NANO86) which seems using newer version of WebOS.
In the last couple of days I was trying to find the API documentation that you used to build your node, unfortunatly I could not find it.
The reason that I started to get errors after deploying the "Volume" or "Mute" nodes and connect them to the new TV, after invertigation I found that the array objects in the old WebOS are different than the new one.
In LG website where they have listed the references for thei WebOS API, the response for "getVolume" array is as follows:
I was using this node for some years with my 8 years old LG TV, recently I bough new LG TV 2021 (NANO86) which seems using newer version of WebOS.
In the last couple of days I was trying to find the API documentation that you used to build your node, unfortunatly I could not find it.
The reason that I started to get errors after deploying the "Volume" or "Mute" nodes and connect them to the new TV, after invertigation I found that the array objects in the old WebOS are different than the new one.
In LG website where they have listed the references for thei WebOS API, the response for "getVolume" array is as follows:
{"returnValue":true,"volumeStatus":{"activeStatus":true,"adjustVolume":true,"maxVolume":100,"muteStatus":true,"volume":12,"mode":"normal","soundOutput":"tv_external_speaker"},"callerId":"com.webos.service.apiadapter","mute":true,"volume":12}
comparing to the array that used in the old WebOS:
{"returnValue":true,"scenario":"mastervolume_tv_speaker","volume":98,"mute":false}
I did a small change on the
volume.js
andmute.js
as follows:Line 19:
if (!err && res) {
Line 20:
Line 27:
similar changes I made to
mute.js
.Are you willing to do these changes on the node and publish it, to that it will be compatible with the old WebOS and the new one.
The text was updated successfully, but these errors were encountered: