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 a9b8a60e43
commit ceca3a15dc
+5 -1
View File
@@ -1749,7 +1749,11 @@ namespace ASCOM.Meade.net
} }
else 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; var parkAlt = AlignmentMode == AlignmentModes.algAltAz ? 0 : 90 - SiteLatitude;
SlewToAltAz(0, parkAlt, false); SlewToAltAz(0, parkAlt, false);
} }