Skip to content

Commit 92aee9d

Browse files
V1.6.11 - Updates
- Turns out the DEC stepper was reversed. Fixed.
1 parent 756ffaf commit 92aee9d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Software/Arduino code/OpenAstroTracker/Mount.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ void Mount::configureRAStepper(byte stepMode, byte pin1, byte pin2, byte pin3, b
8282
/////////////////////////////////
8383
void Mount::configureDECStepper(byte stepMode, byte pin1, byte pin2, byte pin3, byte pin4, int maxSpeed, int maxAcceleration)
8484
{
85-
_stepperDEC = new AccelStepper(stepMode, pin1, pin2, pin3, pin4);
85+
_stepperDEC = new AccelStepper(stepMode, pin4, pin3, pin2, pin1);
8686
_stepperDEC->setMaxSpeed(maxSpeed);
8787
_stepperDEC->setAcceleration(maxAcceleration);
8888
}

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.5.10
4+
Version 1.6.11
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.10";
17+
String version = "V1.6.11";
1818

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

0 commit comments

Comments
 (0)