Added code to make sure that the scope returns values in high precision mode.

This commit is contained in:
2019-05-19 00:59:21 +01:00
parent cf28ecc7c2
commit d39846fa18
3 changed files with 36 additions and 9 deletions
+5 -2
View File
@@ -43,8 +43,11 @@ namespace ASCOM
// TODO add more code to test the driver.
device.Connected = true;
Console.WriteLine($"Ra {device.RightAscension}");
Console.WriteLine($"Dec {device.Declination}");
device.CommandBlind(":Sa+30*00'00#", true);
device.CommandBlind(":Sz150*00#", true);
device.CommandBlind(":MS#", true);
//Console.WriteLine($"Ra {device.RightAscension}");
//Console.WriteLine($"Dec {device.Declination}");
Console.WriteLine($"Altitude {device.Altitude}");
Console.WriteLine($"Azimuth {device.Azimuth}");