Corrected the expected result of the GT command.
This commit is contained in:
@@ -2631,9 +2631,13 @@ namespace ASCOM.Meade.net
|
||||
{
|
||||
get
|
||||
{
|
||||
var rate = CommandString("GT", false);
|
||||
var rate = CommandString("GT", false);
|
||||
//:GT# Get tracking rate
|
||||
//Returns: TT.T#
|
||||
//Current Track Frequency expressed in hertz assuming a synchonous motor design where a 60.0 Hz motor clock
|
||||
// would produce 1 revolution of the telescope in 24 hours.
|
||||
|
||||
DriveRates result = rate == "+60.1" ? DriveRates.driveSidereal : DriveRates.driveLunar;
|
||||
DriveRates result = rate == "60.1" ? DriveRates.driveSidereal : DriveRates.driveLunar;
|
||||
|
||||
LogMessage("TrackingRate Get", $"{rate} {result}");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user