Added work around for LX200 classed to be able to turn tracking off when parking.

This commit is contained in:
2022-05-06 13:39:34 +01:00
parent 8f6ea33139
commit f168acc90b
+5 -1
View File
@@ -1749,7 +1749,11 @@ namespace ASCOM.Meade.net
}
else
{
Tracking = false;
if (CanSetTracking)
Tracking = false;
else
SharedResourcesWrapper.SendBlind("AL"); //todo need to route this to the real commands.
var parkAlt = AlignmentMode == AlignmentModes.algAltAz ? 0 : 90 - SiteLatitude;
SlewToAltAz(0, parkAlt, false);
}