Sync

GET /equipment/mount/sync

Sync the scope, either by manually supplying the coordinates or by solving and syncing. If the coordinates are omitted, a platesolve will be performed.

Query parameters

  • ra number(double)

    Right ascension in degrees

  • dec number(double)

    Declination in degrees

Responses

  • 200 application/json

    Successful response

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

    Can't sync

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

      Values are Mount not connected or Mount is parked.

    • 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/sync
curl \
 --request GET 'http://localhost:1888/v2/api/equipment/mount/sync'
Response examples (200)
{
  "Response": "Synced",
  "Error": "string",
  "StatusCode": 200,
  "Success": true,
  "Type": "API"
}
Response examples (400)
{
  "Response": "string",
  "Error": "Mount not connected",
  "StatusCode": 400,
  "Success": false,
  "Type": "API"
}
Response examples (500)
{
  "Response": "string",
  "Error": "Unknown error",
  "StatusCode": 500,
  "Success": false,
  "Type": "API"
}