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 110110// Park Scope and stop motors
111111// This slews the scope back to it's home position (RA ring centered, DEC
112112// at 90, basically pointing at celestial pole) and stops all movement (including tracking).
113- // Returns: 1 when the scope is parked.
113+ // Returns: Nothing
114114//
115115// -- PARK Extensions --
116116// :hU#
117117// Unpark Scope
118118// This currently simply turns on tracking.
119- // Returns: 1
119+ // Returns: Nothing
120120//
121121// ------------------------------------------------------------------
122122// QUIT MOVEMENT FAMILY
@@ -287,11 +287,10 @@ void handleMeadeMovement(String inCmd) {
287287void handleMeadeHome (String inCmd) {
288288 if (inCmd[0 ] == ' P' ) { // Park
289289 mount.park ();
290- Serial. print ( " 1 " );
290+
291291 }
292292 else if (inCmd[0 ] == ' U' ) { // Unpark
293293 mount.startSlewing (TRACKING);
294- Serial.print (" 1" );
295294 }
296295}
297296
Original file line number Diff line number Diff line change @@ -795,9 +795,7 @@ Public Class Telescope
795795 TL.LogMessage( "SlewToCoordinates" , "RA " + RightAscension.ToString + ", Dec " + Declination.ToString)
796796 Dim strRAcmd = ":Sr" + utilities.HoursToHMS(RightAscension, ":" , ":" )
797797 Dim strDeccmd = utilities.DegreesToDMS(Declination, "*" , ":" , "" )
798- If Declination < 0 Then
799- strDeccmd = "-" + strDeccmd
800- Else
798+ If Declination >= 0 Then
801799 strDeccmd = "+" + strDeccmd
802800 End If
803801 strDeccmd = ":Sd" + strDeccmd
You can’t perform that action at this time.
0 commit comments