Skip to content

Commit 21c2ea6

Browse files
committed
fix breaking build
1 parent 2c0e00e commit 21c2ea6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Software/Arduino code/OpenAstroTracker/c722_menuPOI.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ bool processPOIKeys() {
4040
case btnSELECT: {
4141
mount.stopSlewing(ALL_DIRECTIONS);
4242
if (currentPOI == homePOI) {
43-
mount.goHome(true);
43+
mount.goHome();
4444
}
4545
else if (currentPOI == parkPOI) {
4646
mount.park();

Software/Arduino code/OpenAstroTracker/c725_menuHOME.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ bool processHomeKeys() {
1010
switch (key) {
1111
case btnSELECT: {
1212
if (subGoIndex == 0) {
13-
mount.goHome(true); // start tracking after home
13+
mount.goHome();
1414
}
1515
else {
1616
mount.park();

0 commit comments

Comments
 (0)