increase Button Timing to 200ms

This commit is contained in:
Sandra Keßler 2017-07-30 22:49:52 +02:00
parent 7c001e97bf
commit a7165497ea

View file

@ -404,7 +404,7 @@ public class RuffyScripter {
private void pressKey(final byte key) {
try {
ruffyService.rtSendKey(key, true);
SystemClock.sleep(100);
SystemClock.sleep(200);
ruffyService.rtSendKey(Key.NO_KEY, true);
} catch (RemoteException e) {
throw new CommandException().exception(e).message("Error while pressing buttons");