-
Notifications
You must be signed in to change notification settings - Fork 2
/
commands.json
105 lines (90 loc) · 3.07 KB
/
commands.json
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"on": "verbatim 00 60 00",
"#":"expect '00 60 13 01 00' - I believe this does not reach the attached device.",
"RUthere": "verbatim 00 60 12",
"off": "c0 2f",
"input": "c0 50 $1 ff 00",
"CD": "c0 50 02 ff 00",
"MD": "c0 50 04 ff 00",
"TUNER": "c0 50 00 ff 00",
"ANALOG": "c0 50 0b ff 00",
"OPTICAL": "c0 50 08 ff 00",
"TAPE": "c0 50 05 ff 00",
"ampdevice": "c0 6a",
"#": "ampinfo returns '[08 00 18] c8 70' info, see also b0 0f",
"ampinfo": "c0 0f",
"ampunknown": "c0 6b",
"getvol": "c0 c7",
"mute": "c0 c8 00",
"vol_": "c0 c8 $1",
"#":"why do these commands, ostensibly belonging to the amplifier c0, have a c2/c3 prefix?",
"dispinfo": "c2 d2",
"getEQ": "c3 c9",
"CDplay": "90 00",
"CDstop": "90 01",
"CDpause": "90 02",
"CDppause": "90 03",
"CDnext": "90 08",
"CDprev": "90 09",
"CDffwd": "90 12",
"#":"these enable 0x51 timing updates",
"CDtimings": "90 25",
"CDnotimings": "90 26",
"CDtitle": "90 48 00 01 00 00 00 09 01 01",
"CDartist": "90 48 00 01 00 01 00 09 01 01",
"CDtitle_": "90 48 00 01 $1 00 00 09 01 01",
"CDdiscs": "90 72",
"CDeject": "90 54 00 01",
"MDplay": "b0 00",
"MDstop": "b0 01",
"MDpause": "b0 02",
"MDppause": "b0 03",
"#":"this can end in 01 00 or 00 00 - I wonder why.",
"MDeject": "b0 04 00 00 00",
"MDrec": "b0 07",
"MDnext": "b0 08",
"MDprev": "b0 09",
"#":"these enable 0x51 timing updates",
"MDtimings": "b0 25",
"MDnotimings": "b0 26",
"#":"this returns '[11 00 12] b8 70' info, not sure what.",
"MDmoreinf": "b0 0f",
"MDdispMode":"b0 2e",
"MDffwd": "b0 12",
"MDoff": "b0 2f",
"MDdiscs": "b0 72",
"MDdetect": "b0 54 00 01",
"MDdevice": "b0 6a",
"#":"this returns '[11 00 12] b8 70' disc info, not sure what.",
"MDdiscInfo":"b0 0f",
"variable length disc info, not sure what": "b0 22",
"more variable length disc info": "b0 28 00",
"# yet more mystery info": "b0 57 00 00",
"#":"this returns b8 71 track info, not sure why there's two",
"MDtrackInfo_":"b0 0e 00 $1",
"#":"several data blocks here, I get 00-09 until I start seeing repeating '.. 45 00 $1 $2 ff ff ff 00' responses.",
"MDlongTrackInfo__":"b0 45 00 $1 $2",
"#":"for track titles, etc. continue incrementing $2 until zeroes are found",
"#":"don't know the difference between 48 and e8.",
"MDtracktitle__": "b0 48 00 00 $1 00 $2",
"#":"---- these seem to be some sort of forced remote control mode: using any of them locks the machine into the given command until reboot",
"MD disable force rc": "b0 c0 00",
"MD force rc play": "b0 c0 10",
"MD force rc pause/play": "b0 c0 11",
"MD force rc play/pause": "b0 c0 12",
"MD force display mode": "b0 c0 1d",
"MD force repeat mode": "b0 c0 20",
"MD force rc stop": "b0 c0 13",
"MD force rc eject": "b0 c0 40",
"MD force record": "b0 c0 50",
"MD hex sector(?) display": "b0 c0 ??",
"MDNameIn": "b0 c0 6f",
"tunerFM": "c1 03 00",
"tunerAM": "c1 03 01",
"tunerMono": "c1 0a",
"tunerStereo": "c1 0b",
"tunehz+": "c1 04",
"tunehz-": "c1 05",
"tunepre+": "c1 08",
"tunepre-": "c1 09"
}