ITelescopeV3PulseGuide Method |
Moves the scope in the given direction for the given interval or time at
the rate given by the corresponding guide rate property
Namespace:
ASCOM.DeviceInterface
Assembly:
ASCOM.DeviceInterfaces (in ASCOM.DeviceInterfaces.dll) Version: 3351c4f3fa64146a7efd5b51ed4591e32a0a5484
Syntaxvoid PulseGuide(
GuideDirections Direction,
int Duration
)
Sub PulseGuide (
Direction As GuideDirections,
Duration As Integer
)
void PulseGuide(
GuideDirections Direction,
int Duration
)
Parameters
- Direction
- Type: ASCOM.DeviceInterfaceGuideDirections
The direction in which the guide-rate motion is to be made - Duration
- Type: SystemInt32
The duration of the guide-rate motion (milliseconds)
Exceptions
Remarks
This method returns immediately if the hardware is capable of back-to-back moves e.g. dual-axis moves. For hardware not having dual-axis capability, the method returns only after the move has completed.
NOTES:
- Raises an error if AtPark is true.
- The IsPulseGuiding property must be True during pulse-guiding.
- The PulseGuide method may throw an InvalidValueException if called when an incompatible command is already underway e.g. a slew is in progress.
- The rate of motion for movements about the right ascension axis is specified by the GuideRateRightAscension property. The rate of motion
for movements about the declination axis is specified by the GuideRateDeclination property. These two rates may be tied together into a single rate, depending
on the driver's implementation and the capabilities of the telescope.
See Also