Implemented SlewToAltAz and SlewToAltAzAsync

This commit is contained in:
2019-05-06 22:43:01 +01:00
parent 76eb088d4e
commit eab151d295
5 changed files with 296 additions and 212 deletions
+4 -4
View File
@@ -778,14 +778,14 @@ namespace ASCOM.MeadeAutostar497
public void SlewToAltAz(double Azimuth, double Altitude)
{
tl.LogMessage("SlewToAltAz", "Not implemented");
throw new ASCOM.MethodNotImplementedException("SlewToAltAz");
tl.LogMessage("SlewToAltAz", $"Az=~{Azimuth} Alt={Altitude}");
_telescopeController.SlewToAltAz(Azimuth, Altitude);
}
public void SlewToAltAzAsync(double Azimuth, double Altitude)
{
tl.LogMessage("SlewToAltAzAsync", "Not implemented");
throw new ASCOM.MethodNotImplementedException("SlewToAltAzAsync");
tl.LogMessage("SlewToAltAzAsync", $"Az=~{Azimuth} Alt={Altitude}");
_telescopeController.SlewToAltAzAsync(Azimuth, Altitude);
}
public void SlewToCoordinates(double RightAscension, double Declination)