PiPup icon indicating copy to clipboard operation
PiPup copied to clipboard

Feature request: wakeup from screensaver

Open vzoltan opened this issue 4 years ago • 1 comments

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 :)

vzoltan avatar Dec 06 '21 00:12 vzoltan

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")

dudududodododedede avatar Apr 22 '22 23:04 dudududodododedede