Basic implementation of the IFocusserV3

This commit is contained in:
2019-05-14 00:20:49 +01:00
parent 0c1d7d7f09
commit 3dc5efee9a
3 changed files with 89 additions and 8 deletions
@@ -21,6 +21,8 @@ namespace ASCOM.MeadeAutostar497.Controller
double TargetRightAscension { get; set; }
double TargetDeclination { get; set; }
DriveRates TrackingRate { get; }
int FocuserMaxIncrement { get; set; }
int FocuserMaxStep { get; set; }
void AbortSlew();
void PulseGuide(GuideDirections direction, int duration);
void Park();
@@ -33,5 +35,6 @@ namespace ASCOM.MeadeAutostar497.Controller
void SlewToTargetAsync();
void MoveAxis(TelescopeAxes axis, double rate);
void FocuserHalt();
void FocuserMove(int position);
}
}