Skip to content
New issue

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

Feature request: wakeup from screensaver #39

Open
vzoltan opened this issue Dec 6, 2021 · 1 comment
Open

Feature request: wakeup from screensaver #39

vzoltan opened this issue Dec 6, 2021 · 1 comment

Comments

@vzoltan
Copy link

vzoltan commented Dec 6, 2021

Other android tv notification server can turne of the screensaver when there is a new notification.
Woukd be nice to have if PiPup had the same feature
Thanks :)

@dudududodododedede
Copy link

One workaround is to setup Android ADB debugging over the network and then send input/wakeup keystrokes

i.e. if using python, could use this library: https://github.com/Swind/pure-python-adb

from ppadb.client import Client as AdbClient

adbclient = AdbClient(host="127.0.0.1", port=5037)
adbclient.remote_connect("192.168.0.203", 5555)
device = adbclient.device("192.168.0.203:5555")

device.shell("input keyevent KEYCODE_WAKEUP")

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants