Tracking Mode

GET /equipment/mount/tracking

Set tracking mode

Query parameters

  • mode integer(int32) Required

    The tracking mode to set. 0: Siderial, 1: Lunar, 2: Solar, 3: King, 4: Stopped

    Minimum value is 0, maximum value is 4.

Responses

  • 200 application/json

    Successful response

    Hide response attributes Show response attributes object
    • Response string
    • Error string
    • StatusCode integer
    • Success boolean
    • Type string
  • 409 application/json

    Mount not connected / Mount parked / Invalid tracking mode

    Hide response attributes Show response attributes object
    • Response string
    • Error string

      Values are Mount not connected, Mount parked, or Invalid tracking mode.

    • StatusCode integer
    • Success boolean
    • Type string
  • 500 application/json

    Internal server error, Unknown error

    Hide response attributes Show response attributes object
    • Response string
    • Error string
    • StatusCode integer
    • Success boolean
    • Type string
GET /equipment/mount/tracking
curl \
 --request GET 'http://localhost:1888/v2/api/equipment/mount/tracking?mode=42'
Response examples (200)
{
  "Response": "Tracking mode changed",
  "Error": "string",
  "StatusCode": 200,
  "Success": true,
  "Type": "API"
}
Response examples (409)
{
  "Response": "string",
  "Error": "Mount not connected",
  "StatusCode": 409,
  "Success": false,
  "Type": "API"
}
Response examples (500)
{
  "Response": "string",
  "Error": "Unknown error",
  "StatusCode": 500,
  "Success": false,
  "Type": "API"
}