hobbyquaker/lgtv2

Integration of Picture Settings

helgek opened this issue · 2 comments

Hi,

I finally found solution to change e.g. picture presets. Please see my last comment at:

https://community.home-assistant.io/t/lg-webos-change-picture-setting-mode-with-scripts/262915

Maybe this could be implemented into lgtv2 as well?

Thanks and regards,
Helge

I think you can already do this.

lgtv.getSocket(
    'ssap://com.webos.service.networkinput/getPointerInputSocket',
    function(err, sock) {
        if (!err) {
            sock.send('button', 'name:MENU');
        }
    }
);

Hi,

thanks. You're right, you can use menu commands but it needs a series of button clicks. The method I discovered changes picture settings directly in the backend and doesn't use the UI approach.

There are some caveats nevertheless for this method as well which is why it might not become implemented into additional implementations besides aiopylgtv. These have been discussed here: merdok/homebridge-webos-tv#371