Rename function to "power on"
This will reduce confusion between "power on" when the device is off and "turn device screen off" while mirroring.
This commit is contained in:
parent
41225c3e41
commit
e572d81fa2
1 changed files with 3 additions and 3 deletions
|
@ -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…
Reference in a new issue