File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed
Software/Arduino code/OpenAstroTracker Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 18
18
=======================================================================================================================================
19
19
*/
20
20
21
- String version = " V1.8.12 " ;
21
+ String version = " V1.8.13 " ;
22
22
23
23
// /////////////////////////////////////////////////////////////////////////
24
24
// Also use Configuration_adv for further adjustments!
Original file line number Diff line number Diff line change @@ -465,6 +465,10 @@ bool processCalibrationKeys()
465
465
LOGV2 (DEBUG_INFO, " CAL: Set roll to %f" , angles.rollAngle );
466
466
calState = HIGHLIGHT_ROLL_LEVEL;
467
467
}
468
+ else if (key == btnLEFT)
469
+ {
470
+ calState = HIGHLIGHT_ROLL_LEVEL;
471
+ }
468
472
else if (key == btnRIGHT)
469
473
{
470
474
gotoNextMenu ();
@@ -483,6 +487,10 @@ bool processCalibrationKeys()
483
487
LOGV2 (DEBUG_INFO, " CAL: Set pitch to %f" , angles.pitchAngle );
484
488
calState = HIGHLIGHT_PITCH_LEVEL;
485
489
}
490
+ else if (key == btnLEFT)
491
+ {
492
+ calState = HIGHLIGHT_PITCH_LEVEL;
493
+ }
486
494
else if (key == btnRIGHT)
487
495
{
488
496
gotoNextMenu ();
You can’t perform that action at this time.
0 commit comments