From 287c6a872663e086d652851089894a3842922c36 Mon Sep 17 00:00:00 2001 From: XANTRONIX Development Date: Wed, 3 Jan 2024 20:42:46 -0500 Subject: [PATCH] Use 'S' for sport/race mode gear indicator --- py/hexagram/tacho.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py/hexagram/tacho.py b/py/hexagram/tacho.py index d9492db..f60db59 100644 --- a/py/hexagram/tacho.py +++ b/py/hexagram/tacho.py @@ -62,7 +62,7 @@ class Tacho(Dial): if self.shift_mode.value >= ShiftMode.SPORT.value \ and self.gear.value >= Gear.GEAR_1.value: - text += 'R' + text += 'S' text += str(self.gear)