File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Software/Arduino code/OpenAstroTracker Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -359,11 +359,11 @@ void Mount::startSlewing(int direction) {
359
359
}
360
360
else {
361
361
if (direction & NORTH) {
362
- _stepperDEC->moveTo (- 30000 );
362
+ _stepperDEC->moveTo (30000 );
363
363
_mountStatus |= STATUS_SLEWING;
364
364
}
365
365
if (direction & SOUTH ) {
366
- _stepperDEC->moveTo (30000 );
366
+ _stepperDEC->moveTo (- 30000 );
367
367
_mountStatus |= STATUS_SLEWING;
368
368
}
369
369
if (direction & EAST ) {
Original file line number Diff line number Diff line change 1
1
/*
2
2
=======================================================================================================================================
3
3
4
- Version 1.6.11
4
+ Version 1.6.12
5
5
6
6
1. Connect your Arduino, under tools choose "Arduino Uno", set the right Port and set "Arduino ISP" as the Programmer.
7
7
2. Hit upload (Ctrl-U)
14
14
15
15
=======================================================================================================================================
16
16
*/
17
- String version = " V1.6.11 " ;
17
+ String version = " V1.6.12 " ;
18
18
19
19
// See NORTHERN_HEMISPHERE in Globals.h if you not in the northern hemisphere
20
20
You can’t perform that action at this time.
0 commit comments