Esempio n. 1
0
 public void SlewToTargetAsync()
 {
     //tl.LogMessage("SlewToTargetAsync", "Not implemented");
     //throw new ASCOM.MethodNotImplementedException("SlewToTargetAsync");
     CheckRange(telescope.TargetRightAscension, 0, 24, "SlewToTargetAsync", "TargetRightAscension");
     CheckRange(telescope.TargetDeclination, -90, 90, "SlewToTargetAsync", "TargetDeclination");
     telescope.TargetRightAscension = TargetRightAscension;
     telescope.TargetDeclination    = TargetDeclination;
     telescope.SlewToTargetAsync();
 }