File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Software/Arduino code/OpenAstroTracker Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 114114// Park Scope and stop motors
115115// This slews the scope back to it's home position (RA ring centered, DEC
116116// at 90, basically pointing at celestial pole) and stops all movement (including tracking).
117- // Returns: 1 when the scope is parked.
117+ // Returns: Nothing
118118//
119119// -- PARK Extensions --
120120// :hU#
121121// Unpark Scope
122122// This currently simply turns on tracking.
123- // Returns: 1
123+ // Returns: Nothing
124124//
125125// ------------------------------------------------------------------
126126// QUIT MOVEMENT FAMILY
@@ -298,11 +298,11 @@ void handleMeadeHome(String inCmd) {
298298 mount.waitUntilStopped (ALL_DIRECTIONS);
299299 mount.setHome ();
300300 mount.stopSlewing (TRACKING);
301- Serial.print (" 1" );
301+ // Serial.print("1");
302302 }
303303 else if (inCmd[0 ] == ' U' ) { // Unpark
304304 mount.startSlewing (TRACKING);
305- Serial.print (" 1" );
305+ // Serial.print("1");
306306 }
307307}
308308
You can’t perform that action at this time.
0 commit comments