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 114
114
// Park Scope and stop motors
115
115
// This slews the scope back to it's home position (RA ring centered, DEC
116
116
// at 90, basically pointing at celestial pole) and stops all movement (including tracking).
117
- // Returns: 1 when the scope is parked.
117
+ // Returns: Nothing
118
118
//
119
119
// -- PARK Extensions --
120
120
// :hU#
121
121
// Unpark Scope
122
122
// This currently simply turns on tracking.
123
- // Returns: 1
123
+ // Returns: Nothing
124
124
//
125
125
// ------------------------------------------------------------------
126
126
// QUIT MOVEMENT FAMILY
@@ -298,11 +298,11 @@ void handleMeadeHome(String inCmd) {
298
298
mount.waitUntilStopped (ALL_DIRECTIONS);
299
299
mount.setHome ();
300
300
mount.stopSlewing (TRACKING);
301
- Serial.print (" 1" );
301
+ // Serial.print("1");
302
302
}
303
303
else if (inCmd[0 ] == ' U' ) { // Unpark
304
304
mount.startSlewing (TRACKING);
305
- Serial.print (" 1" );
305
+ // Serial.print("1");
306
306
}
307
307
}
308
308
You can’t perform that action at this time.
0 commit comments