@DaVeX↯ It's an easy enough change to do yourself, though. Just replace this (lines 615-617 in unmodified .nut)
with
You can tweak at what rpms does the indicator turn red by changing the number 0.93 (as in 93 percent of maximum rpms) to something else (between 0 and 1, obviously), and you can also tweak the color by changing the 0xff3333ff to something else - pure red would be 0xff0000ff, I'm using a slightly lighter red.
Code:
pushFont(::gearFont);
draw.text(15, 15, 0xffffffff, gearStr);
popFont();
with
Code:
pushFont(::gearFont);
if (rpm < maxRpm * 0.93) {
draw.text(15, 15, 0xffffffff, gearStr);
} else {
draw.text(15, 15, 0xff3333ff, gearStr);
}
popFont();
You can tweak at what rpms does the indicator turn red by changing the number 0.93 (as in 93 percent of maximum rpms) to something else (between 0 and 1, obviously), and you can also tweak the color by changing the 0xff3333ff to something else - pure red would be 0xff0000ff, I'm using a slightly lighter red.