We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am aware that this is not an issue, but rather a solution. Maybe you can add this to your instructions?
Problem: LG Smart TV without dedicated Disney+ key on the remote.
Solution: Missuse mute key to launch the app by double clicking
var clicked = false; var timer; on({id: 'lgtv.0.states.mute', change:"ne"}, function (obj) { if(obj.state.val && !clicked){ clicked = true; timer= setTimeout(function () { clicked = false; },1000); } else if(!obj.state.val && clicked){ setState("lgtv.0.states.launch", "com.disney.disneyplus-prod"); clicked = false; } else{ return; } });
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am aware that this is not an issue, but rather a solution. Maybe you can add this to your instructions?
Problem:
LG Smart TV without dedicated Disney+ key on the remote.
Solution:
Missuse mute key to launch the app by double clicking
The text was updated successfully, but these errors were encountered: