Skip to content

Commit b7cc4e3

Browse files
committed
Print position in G25 sequential calibration
User feedback, matching the H-pattern calibration
1 parent 5d14af6 commit b7cc4e3

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/SimRacing.cpp

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1626,7 +1626,12 @@ void LogitechShifterG25::serialCalibrationSequential(Stream& iface) {
16261626

16271627
this->update();
16281628
data[i] = this->getPositionRaw(Axis::Y);
1629-
iface.println(); // spacing
1629+
1630+
iface.print(F("Shifter position recorded as "));
1631+
iface.print('\'');
1632+
iface.print(data[i]);
1633+
iface.print('\'');
1634+
iface.println('\n'); // spacing
16301635
}
16311636

16321637
iface.println(F("These settings are optional. Send 'y' to customize. Send any other character to continue with the default values."));

0 commit comments

Comments
 (0)