File tree Expand file tree Collapse file tree 2 files changed +4
-7
lines changed
Arduino code/OpenAstroTracker
OpenAstroTracker ASCOM/OpenAstroTracker ASCOM Expand file tree Collapse file tree 2 files changed +4
-7
lines changed Original file line number Diff line number Diff line change 110
110
// Park Scope and stop motors
111
111
// This slews the scope back to it's home position (RA ring centered, DEC
112
112
// at 90, basically pointing at celestial pole) and stops all movement (including tracking).
113
- // Returns: 1 when the scope is parked.
113
+ // Returns: Nothing
114
114
//
115
115
// -- PARK Extensions --
116
116
// :hU#
117
117
// Unpark Scope
118
118
// This currently simply turns on tracking.
119
- // Returns: 1
119
+ // Returns: Nothing
120
120
//
121
121
// ------------------------------------------------------------------
122
122
// QUIT MOVEMENT FAMILY
@@ -287,11 +287,10 @@ void handleMeadeMovement(String inCmd) {
287
287
void handleMeadeHome (String inCmd) {
288
288
if (inCmd[0 ] == ' P' ) { // Park
289
289
mount.park ();
290
- Serial. print ( " 1 " );
290
+
291
291
}
292
292
else if (inCmd[0 ] == ' U' ) { // Unpark
293
293
mount.startSlewing (TRACKING);
294
- Serial.print (" 1" );
295
294
}
296
295
}
297
296
Original file line number Diff line number Diff line change @@ -795,9 +795,7 @@ Public Class Telescope
795
795
TL.LogMessage( "SlewToCoordinates" , "RA " + RightAscension.ToString + ", Dec " + Declination.ToString)
796
796
Dim strRAcmd = ":Sr" + utilities.HoursToHMS(RightAscension, ":" , ":" )
797
797
Dim strDeccmd = utilities.DegreesToDMS(Declination, "*" , ":" , "" )
798
- If Declination < 0 Then
799
- strDeccmd = "-" + strDeccmd
800
- Else
798
+ If Declination >= 0 Then
801
799
strDeccmd = "+" + strDeccmd
802
800
End If
803
801
strDeccmd = ":Sd" + strDeccmd
You can’t perform that action at this time.
0 commit comments