Skip to content

Commit 83107b9

Browse files
Stop steppers when entering CTRL mode
Remove some overlooked logging.
1 parent 93939b2 commit 83107b9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Software/Arduino code/OpenAstroTracker/OpenAstroTracker.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
1515
=======================================================================================================================================
1616
*/
17-
String version = "V1.4.2";
17+
String version = "V1.4.3";
1818

1919
boolean north = true; // change this to 'false' if youre in the southern hemisphere
2020

@@ -38,7 +38,7 @@ float RAStepperLimit = 15500; // Going much more than this each directio
3838

3939
// These are for 47N, so they will need adjustment if you're a lot away from that.
4040
// You can use the CTRL menu to find the limits and place them here. I moved it
41-
// down until my lens was horizontal. Not the DEC number. Then move it up until
41+
// down until my lens was horizontal. Note the DEC number. Then move it up until
4242
// the lens is horizontal and note that number. Put those here. Always watch your
4343
// tracker and hit RESET if it approaches a dangerous area.
4444
float DECStepperDownLimit = 10000; // Going much more than this will make the lens collide with the ring

Software/Arduino code/OpenAstroTracker/c75_menuCTRL.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ void processControlKeys(int key) {
88
if (!inControlMode ) {
99
if (key == btnSELECT) {
1010
inControlMode = true;
11-
Serial.println("CTRL: Reset totals!");
11+
stopSteppers();
1212
totalDECMove = 0;
1313
totalRAMove = 0;
1414
} else if (key == btnRIGHT) {

0 commit comments

Comments
 (0)