Skip to content

Commit 2d9fbf9

Browse files
V1.6.12 - Updates
- The UP and DOWN keys in the CTRL menu needed to run the DEC stepper in opposite directions.
1 parent 92aee9d commit 2d9fbf9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Software/Arduino code/OpenAstroTracker/Mount.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -359,11 +359,11 @@ void Mount::startSlewing(int direction) {
359359
}
360360
else {
361361
if (direction & NORTH) {
362-
_stepperDEC->moveTo(-30000);
362+
_stepperDEC->moveTo(30000);
363363
_mountStatus |= STATUS_SLEWING;
364364
}
365365
if (direction & SOUTH ) {
366-
_stepperDEC->moveTo(30000);
366+
_stepperDEC->moveTo(-30000);
367367
_mountStatus |= STATUS_SLEWING;
368368
}
369369
if (direction & EAST ) {

Software/Arduino code/OpenAstroTracker/OpenAstroTracker.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
=======================================================================================================================================
33
4-
Version 1.6.11
4+
Version 1.6.12
55
66
1. Connect your Arduino, under tools choose "Arduino Uno", set the right Port and set "Arduino ISP" as the Programmer.
77
2. Hit upload (Ctrl-U)
@@ -14,7 +14,7 @@
1414
1515
=======================================================================================================================================
1616
*/
17-
String version = "V1.6.11";
17+
String version = "V1.6.12";
1818

1919
// See NORTHERN_HEMISPHERE in Globals.h if you not in the northern hemisphere
2020

0 commit comments

Comments
 (0)