Slew

GET /framing/slew

Slew the mount to the current coordinates. This requires the framing assistant to be initalized, which can by achieved by openening it once.

Query parameters

  • slew_option string

    The slew option to use. Possible values: Center, Rotate

    Values are Center or Rotate.

  • waitForResult boolean

    Whether to wait for the slew to finish

Responses

  • 200 application/json

    Successful response

    Hide response attributes Show response attributes object
    • Response string

      Values are Slew started or Slew finished.

    • Error string
    • 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 /framing/slew
curl \
 --request GET 'http://localhost:1888/v2/api/framing/slew'
Response examples (200)
{
  "Response": "Slew started",
  "Error": "string",
  "StatusCode": 200,
  "Success": true,
  "Type": "API"
}
Response examples (500)
{
  "Response": "string",
  "Error": "Unknown error",
  "StatusCode": 500,
  "Success": false,
  "Type": "API"
}