Skip to content

Commit 895bec5

Browse files
V1.6.53 - Updates
- Fixed a bug that skipped the Set Home confirmation in CTRL mode.
1 parent f03bbad commit 895bec5

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Software/Arduino code/OpenAstroTracker/OpenAstroTracker.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*/
1717
#include "Globals.h"
1818

19-
String version = "V1.6.52";
19+
String version = "V1.6.53";
2020

2121
///////////////////////////////////////////////////////////////////////////
2222
// Please see the Globals.h file for configuration of the firmware.

Software/Arduino code/OpenAstroTracker/c75_menuCTRL.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ bool processControlKeys() {
115115
lcdMenu.setCursor(0, 0);
116116
lcdMenu.printMenu("Set home point?");
117117
confirmZeroPoint = true;
118+
waitForRelease = true;
118119
}
119120
}
120121
break;
@@ -127,7 +128,7 @@ bool processControlKeys() {
127128

128129
mount.loop();
129130

130-
return false;
131+
return waitForRelease;
131132
}
132133

133134

0 commit comments

Comments
 (0)