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 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.
Original file line number Diff line number Diff 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 }
Original file line number Diff line number Diff 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) {
You can’t perform that action at this time.
0 commit comments