You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Log.WriteLine($"NINALOG: AZ Adjustment is too large!");
157
+
Log.WriteLine($"NINALOG: AZ Adjustment is too large! (Requested ${azAdjust}m, but limit is ${60*AppSettings.Instance.AZLimit}m)");
156
158
stringmsg="";
157
-
msg=$"Azimuth error is too large for automatic adjustment, please move mount manually to within {AppSettings.Instance.AZLeftLimit.ToString("F1")} degrees left and {AppSettings.Instance.AZRightLimit.ToString("F1")} degrees right.";
159
+
msg=$"Azimuth error is too large for automatic adjustment, please move mount manually to within {AppSettings.Instance.AZLimit.ToString("F1")} degrees horizontally.";
Log.WriteLine($"NINALOG: ALT Adjustment is too large!");
167
-
msg=$"Altitude error is too large for automatic adjustment, please move mount manually to within {AppSettings.Instance.ALTUpLimit.ToString("F1")} degrees up and {AppSettings.Instance.ALTDownLimit.ToString("F1")} degrees down.";
170
+
Log.WriteLine($"NINALOG: ALT Adjustment is too large! (Requested ${altAdjust}m, but limit is ${60*AppSettings.Instance.ALTLimit}m)");
171
+
msg=$"Altitude error is too large for automatic adjustment, please move mount manually to within {AppSettings.Instance.ALTLimit.ToString("F1")} degrees vertically.";
168
172
ShowDialogStatus("Error",msg);
169
173
_numCalculatedErrors=0;
170
174
return;
171
175
}
176
+
172
177
Log.WriteLine($"NINALOG: Sending Adjustment to mount");
0 commit comments