grammar.json
1.5 KB
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
{
"Telescope" : {
"set": [
{
"name": "COORD_RADEC",
"label": "Upload R.A., Dec. to the mount",
"input_label": [
{
"R.A.":[15, "Degrees", "Right Ascension"],
"Dec.":[15, "", ""],
"Equ.":[15, "", ""]
}
],
"help": "Upload R.A., Dec. to the mount. Use TELESCOPE DO START to slew the mount."
},
{
"name": "COORD_HADEC",
"label": "Upload apparent hour angle declination to the mount",
"input_label": [
{
"H.A.":[15, "", ""],
"Dec.":[15, "", ""]
}
],
"help": "Upload H.A., Dec. to the mount. Use TELESCOPE DO START to slew the mount."
},
{
"name": "COORD_ALTAZ",
"label": "Upload apparent hour angle declination to the mount",
"input_label": [
{
"Az.":[15, "", ""],
"Elev.":[15, "", ""]
}
],
"help": "Upload Az., elev. to the mount. Azimuth=0 at South. Use TELESCOPE DO START to slew the mount."
}
],
"get": [
{
"name": "COORD_RADEC",
"label": "dowload R.A., Dec. from the mount",
"input_label": [],
"help": "Download R.A., Dec. to the mount."
}
],
"do": [
{
"name": "START",
"input_label": [],
"help": "Start the slew of the mount."
}
]
},
"Enums" : {
"EnumReadMode" : [
"Ramp"
],
"EnumShutter" : [
"Synchro",
"Closed",
"Opened"
],
"EnumFilter" : [
"T",
"H"
],
"EnumRotator" : [
"None",
"Synchro",
"Tracking"
],
"EnumMoveMode" : [
"Goto",
"Track",
"GotoTrack"
]
}
}