We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f525c1 commit b36ebcdCopy full SHA for b36ebcd
firmware/openbot/openbot.ino
@@ -1619,7 +1619,7 @@ void display_vehicle_data() {
1619
#endif
1620
#if (HAS_SPEED_SENSORS_FRONT or HAS_SPEED_SENSORS_BACK or HAS_SPEED_SENSORS_MIDDLE)
1621
String left_rpm_str = String("Left RPM: ") + String(rpm_left, 0);
1622
- String right_rpm_str = String("Right RPM: ") + String(rpm_left, 0);
+ String right_rpm_str = String("Right RPM: ") + String(rpm_right, 0);
1623
#else
1624
String left_rpm_str = String("Left RPM: ") + String("N/A");
1625
String right_rpm_str = String("Right RPM: ") + String("N/A");
@@ -1885,4 +1885,4 @@ void update_speed_rm() {
1885
counter_rm++;
1886
}
1887
1888
-#endif
+#endif
0 commit comments