Upgraded driver version to 0.1

This commit is contained in:
2019-05-08 18:26:39 +01:00
parent 3f8853c7c5
commit 9b7a850607
6 changed files with 49 additions and 6 deletions
+4 -4
View File
@@ -956,15 +956,15 @@ namespace ASCOM.MeadeAutostar497
{
get
{
tl.LogMessage("Absolute Get", true.ToString());
return true; // This is an absolute focuser
tl.LogMessage("Absolute Get", false.ToString());
return false; // This is an absolute focuser
}
}
public void Halt()
{
tl.LogMessage("Halt", "Not implemented");
throw new ASCOM.MethodNotImplementedException("Halt");
tl.LogMessage("Halt", "Halting");
_telescopeController.FocuserHalt();
}
public bool IsMoving