Skip to content

Commit 112f419

Browse files
authored
Adjust sequential shift calibration wording (#22)
Suggested by @willfordrockwell in #21
1 parent d951c1b commit 112f419

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

src/SimRacing.cpp

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff 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."));

0 commit comments

Comments
 (0)