File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed
Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -1581,9 +1581,9 @@ void LogitechShifterG25::serialCalibrationSequential(Stream& iface) {
15811581 float releasePoint = LogitechShifterG25::CalReleasePoint;
15821582
15831583 const uint8_t NumPoints = 3 ;
1584- const char * directions[2 ] = {
1585- " up" ,
1586- " down" ,
1584+ const char * directions[2 ][ 2 ] = {
1585+ { " away from you " , " up" } ,
1586+ { " towards you " , " down" } ,
15871587 };
15881588 int data[NumPoints];
15891589
@@ -1596,8 +1596,10 @@ void LogitechShifterG25::serialCalibrationSequential(Stream& iface) {
15961596 iface.print (F (" Leave the gear shifter in neutral" ));
15971597 }
15981598 else {
1599- iface.print (F (" Please move the gear shifter to sequentially shift " ));
1600- iface.print (directions[i - 1 ]);
1599+ iface.print (F (" Please move the gear shifter " ));
1600+ iface.print (directions[i - 1 ][0 ]);
1601+ iface.print (F (" to sequentially shift " ));
1602+ iface.print (directions[i - 1 ][1 ]);
16011603 iface.print (F (" and hold it there" ));
16021604 }
16031605 iface.println (F (" . Send any character to continue." ));
You can’t perform that action at this time.
0 commit comments