ITelescopeV4SlewToCoordinatesAsync Method |
Move the telescope to the given equatorial coordinates, return immediately after starting the slew.
Namespace: ASCOM.DeviceInterfaceAssembly: ASCOM.DeviceInterfaces (in ASCOM.DeviceInterfaces.dll) Version: 7.0.0-rc.0+0
Syntaxvoid SlewToCoordinatesAsync(
double RightAscension,
double Declination
)
Sub SlewToCoordinatesAsync (
RightAscension As Double,
Declination As Double
)
void SlewToCoordinatesAsync(
double RightAscension,
double Declination
)
Parameters
- RightAscension Double
- The destination right ascension (hours). Copied to TargetRightAscension.
- Declination Double
- The destination declination (degrees, positive North). Copied to TargetDeclination.
Exceptions
Remarks
Further explanation is available in this link: Master Interface Document.
ITelescoipeV4 clarification - If the mount can slew, driver authors must implement both synchronous and asynchronous slewing. Alpaca devices must only implement asynchronous slewing.
See
Synchronous and Asynchronous Slewing for more information.
Revision HistoryDate | Version | Description |
---|
ITelescope | Platform 3.0 | Member added. |
ITelescopeV4 | Platform 7.0 | Synchronous slewing is deprecated, see note above. |
See Also