Skip to content

Commit bb17286

Browse files
V1.8.13 - Updates
- Made the LEFT button leave the Roll and Pitch menus without storing the offset (like SELECT does).
1 parent 68ae481 commit bb17286

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

Software/Arduino code/OpenAstroTracker/Configuration.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
=======================================================================================================================================
1919
*/
2020

21-
String version = "V1.8.12";
21+
String version = "V1.8.13";
2222

2323
///////////////////////////////////////////////////////////////////////////
2424
// Also use Configuration_adv for further adjustments!

Software/Arduino code/OpenAstroTracker/c76_menuCAL.hpp

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -465,6 +465,10 @@ bool processCalibrationKeys()
465465
LOGV2(DEBUG_INFO, "CAL: Set roll to %f", angles.rollAngle);
466466
calState = HIGHLIGHT_ROLL_LEVEL;
467467
}
468+
else if (key == btnLEFT)
469+
{
470+
calState = HIGHLIGHT_ROLL_LEVEL;
471+
}
468472
else if (key == btnRIGHT)
469473
{
470474
gotoNextMenu();
@@ -483,6 +487,10 @@ bool processCalibrationKeys()
483487
LOGV2(DEBUG_INFO, "CAL: Set pitch to %f", angles.pitchAngle);
484488
calState = HIGHLIGHT_PITCH_LEVEL;
485489
}
490+
else if (key == btnLEFT)
491+
{
492+
calState = HIGHLIGHT_PITCH_LEVEL;
493+
}
486494
else if (key == btnRIGHT)
487495
{
488496
gotoNextMenu();

0 commit comments

Comments
 (0)