aboutsummaryrefslogtreecommitdiff
path: root/roku-cli.py
diff options
context:
space:
mode:
authorBen Winston2020-05-18 20:24:19 -0400
committerBen Winston2020-05-18 20:33:31 -0400
commiteca5f38503e898d366e2191abe48cb8cfccf251d (patch)
treed183218218ad21804a59310ff55b400be78edc9c /roku-cli.py
parent1f9b52a2c701dd7e4b9dc1f23f0ceec81899ac0f (diff)
apparently the replay/info buttons are below the arrow keys?
Diffstat (limited to 'roku-cli.py')
-rwxr-xr-xroku-cli.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/roku-cli.py b/roku-cli.py
index cfff29e..1eb59de 100755
--- a/roku-cli.py
+++ b/roku-cli.py
@@ -27,15 +27,15 @@ class RokuRemote:
self.keys['h'] = RemoteKey('h', 'Home', 'keypress/home', 1, 10)
# second row
- self.keys['r'] = RemoteKey('r', 'Repl', 'keypress/instantreplay', 4, 1)
- self.keys['*'] = RemoteKey('*', 'Star', 'keypress/info', 4, 10)
+ self.keys['r'] = RemoteKey('r', 'Repl', 'keypress/instantreplay', 13, 1)
+ self.keys['*'] = RemoteKey('*', 'Star', 'keypress/info', 13, 10)
# arrow keys
- self.keys['KEY_UP'] = RemoteKey('KEY_UP', '^', 'keypress/up', 7, 7)
- self.keys['KEY_LEFT'] = RemoteKey('KEY_LEFT', '<', 'keypress/left', 10, 1)
- self.keys['\n'] = RemoteKey('\n', 'OK!', 'keypress/select', 10, 6)
- self.keys['KEY_RIGHT'] = RemoteKey('KEY_RIGHT', '>', 'keypress/right', 10, 13)
- self.keys['KEY_DOWN'] = RemoteKey('KEY_DOWN', 'v', 'keypress/down', 13, 7)
+ self.keys['KEY_UP'] = RemoteKey('KEY_UP', '^', 'keypress/up', 4, 7)
+ self.keys['KEY_LEFT'] = RemoteKey('KEY_LEFT', '<', 'keypress/left', 7, 1)
+ self.keys['\n'] = RemoteKey('\n', 'OK!', 'keypress/select', 7, 6)
+ self.keys['KEY_RIGHT'] = RemoteKey('KEY_RIGHT', '>', 'keypress/right', 7, 13)
+ self.keys['KEY_DOWN'] = RemoteKey('KEY_DOWN', 'v', 'keypress/down', 10, 7)
# third row
self.keys['<'] = RemoteKey('<', '<<', 'keypress/rev', 16, 1)