Skip to content

Commit 5baf031

Browse files
V1.6.28 - Updates
- Changed naming from pole to home - Fixed Polar alignment targets
1 parent 8ce0e23 commit 5baf031

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
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.27";
19+
String version = "V1.6.28";
2020

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

Software/Arduino code/OpenAstroTracker/c65_startup.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ bool processStartupKeys() {
4747
startupState = StartupWaitForPoleCompletion;
4848
inStartup = false;
4949
lcdMenu.setCursor(0, 0);
50-
lcdMenu.printMenu("Use ^~<> to pole");
50+
lcdMenu.printMenu("Use ^~<> to home");
5151
lcdMenu.setActive(Control_Menu);
5252

5353
// Skip the 'Manual control' prompt
@@ -111,7 +111,7 @@ void prinStartupMenu() {
111111
choices.setCharAt(15, '<');
112112
}
113113
lcdMenu.setCursor(0, 0);
114-
lcdMenu.printMenu("Pointed at pole?");
114+
lcdMenu.printMenu("Home position?");
115115
lcdMenu.setCursor(0, 1);
116116
lcdMenu.printMenu(choices);
117117
}

Software/Arduino code/OpenAstroTracker/c76_menuCAL.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ bool processCalibrationKeys() {
9999
mount.targetRA().subtractTime(mount.HA());
100100

101101
// Now set DEC to move to Polaris
102-
mount.targetDEC() = DegreeTime(89 - (NORTHERN_HEMISPHERE ? 90 : -90), 21, 3);
102+
mount.targetDEC() = DegreeTime(90 - (NORTHERN_HEMISPHERE ? 90 : -90), 0, 0);
103103
mount.startSlewingToTarget();
104104
} else if (key == btnRIGHT) {
105105
lcdMenu.setNextActive();
@@ -112,7 +112,7 @@ bool processCalibrationKeys() {
112112

113113
// RA is already set. Now set DEC to move the same distance past Polaris as
114114
// it is from the Celestial Pole. That equates to 88deg 42' 6".
115-
mount.targetDEC() = DegreeTime(88 - (NORTHERN_HEMISPHERE ? 90 : -90), 42, 6);
115+
mount.targetDEC() = DegreeTime(89 - (NORTHERN_HEMISPHERE ? 90 : -90), 21, 3);
116116
mount.startSlewingToTarget();
117117
}
118118
else if (key == btnRIGHT) {

0 commit comments

Comments
 (0)