Re instated the Altitude value and ran conformance for both the telescope and focuser.

This commit is contained in:
2019-05-18 00:08:07 +01:00
parent 85fcb8a73c
commit cf5a6c72fe
3 changed files with 286 additions and 285 deletions
+9 -9
View File
@@ -404,17 +404,17 @@ namespace ASCOM.Meade.net
get
{
//todo firmware bug in 44Eg, :GA# is returning the dec, not the altitude!
//var result = SharedResources.SendString(":GA#");
////:GA# Get Telescope Altitude
////Returns: sDD* MM# or sDD*MMSS#
////The current scope altitude. The returned format depending on the current precision setting.
var result = SharedResources.SendString(":GA#");
//:GA# Get Telescope Altitude
//Returns: sDD* MM# or sDD*MMSS#
//The current scope altitude. The returned format depending on the current precision setting.
//var alt = utilities.DMSToDegrees(result);
//tl.LogMessage("Altitude", $"{alt}");
//return alt;
var alt = utilities.DMSToDegrees(result);
tl.LogMessage("Altitude", $"{alt}");
return alt;
tl.LogMessage("Altitude Get", "Not implemented");
throw new ASCOM.PropertyNotImplementedException("Altitude", false);
//tl.LogMessage("Altitude Get", "Not implemented");
//throw new ASCOM.PropertyNotImplementedException("Altitude", false);
}
}