Subscribe to mount axis move events

SUB /mount

A websocket channel to move the mount axis manually. You will need to resend the command to move the axis periodically about every second, because the server will automatically stop the movement when it hasn't recieved a command for two seconds as a safety measure.

Accepts one of the following messages.

SUBSCRIBE /mount

Mount Axis Move Response

Payload

  • Response string

    Values are Moving or Stopped Move.

  • Error string
  • StatusCode integer
  • Success boolean
  • Type string
Payload examples
{
  "Response": "Moving",
  "Error": "string",
  "StatusCode": 200,
  "Success": true,
  "Type": "Socket"
}

Error

Payload

  • Response string
  • Error string
  • StatusCode integer
  • Success boolean
  • Type string
Payload examples
{
  "Response": "Some Error",
  "Error": "string",
  "StatusCode": 400,
  "Success": false,
  "Type": "Socket"
}