Rename function to "power on"

This will reduce confusion between "power on" when the device is off and
"turn device screen off" while mirroring.
fps
Romain Vimont 5 years ago
parent 41225c3e41
commit e572d81fa2

@ -54,8 +54,8 @@ public class Controller {
}
public void control() throws IOException {
// on start, turn screen on
turnScreenOn();
// on start, power on the device
powerOn();
while (true) {
handleEvent();
@ -182,7 +182,7 @@ public class Controller {
return device.injectInputEvent(event, InputManager.INJECT_INPUT_EVENT_MODE_ASYNC);
}
private boolean turnScreenOn() {
private boolean powerOn() {
return device.isScreenOn() || injectKeycode(KeyEvent.KEYCODE_POWER);
}

Loading…
Cancel
Save