grammar.json 1.5 KB
{
	"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"
		]
	}
	
}