File: const.py

package info (click to toggle)
python-directv 0.4.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 324 kB
  • sloc: python: 1,067; sh: 5; makefile: 3
file content (47 lines) | stat: -rw-r--r-- 570 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
"""Constants for DirecTV."""

VALID_REMOTE_KEYS = [
    "power",
    "poweron",
    "poweroff",
    "format",
    "pause",
    "rew",
    "replay",
    "stop",
    "advance",
    "ffwd",
    "record",
    "play",
    "guide",
    "active",
    "list",
    "exit",
    "back",
    "menu",
    "info",
    "up",
    "down",
    "left",
    "right",
    "select",
    "red",
    "green",
    "yellow",
    "blue",
    "chanup",
    "chandown",
    "prev",
    "0",
    "1",
    "2",
    "3",
    "4",
    "5",
    "6",
    "7",
    "8",
    "9",
    "dash",
    "enter",
]