File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Software/Arduino code/OpenAstroTracker Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 16
16
*/
17
17
#include " Globals.h"
18
18
19
- String version = " V1.6.27 " ;
19
+ String version = " V1.6.28 " ;
20
20
21
21
// /////////////////////////////////////////////////////////////////////////
22
22
// Please see the Globals.h file for configuration of the firmware.
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ bool processStartupKeys() {
47
47
startupState = StartupWaitForPoleCompletion;
48
48
inStartup = false ;
49
49
lcdMenu.setCursor (0 , 0 );
50
- lcdMenu.printMenu (" Use ^~<> to pole " );
50
+ lcdMenu.printMenu (" Use ^~<> to home " );
51
51
lcdMenu.setActive (Control_Menu);
52
52
53
53
// Skip the 'Manual control' prompt
@@ -111,7 +111,7 @@ void prinStartupMenu() {
111
111
choices.setCharAt (15 , ' <' );
112
112
}
113
113
lcdMenu.setCursor (0 , 0 );
114
- lcdMenu.printMenu (" Pointed at pole ?" );
114
+ lcdMenu.printMenu (" Home position ?" );
115
115
lcdMenu.setCursor (0 , 1 );
116
116
lcdMenu.printMenu (choices);
117
117
}
Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ bool processCalibrationKeys() {
99
99
mount.targetRA ().subtractTime (mount.HA ());
100
100
101
101
// 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 );
103
103
mount.startSlewingToTarget ();
104
104
} else if (key == btnRIGHT) {
105
105
lcdMenu.setNextActive ();
@@ -112,7 +112,7 @@ bool processCalibrationKeys() {
112
112
113
113
// RA is already set. Now set DEC to move the same distance past Polaris as
114
114
// 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 );
116
116
mount.startSlewingToTarget ();
117
117
}
118
118
else if (key == btnRIGHT) {
You can’t perform that action at this time.
0 commit comments