Hi,
I'm looking for the simplest way to display a constant number of digits on the display, also decimals.
"Zeropad" does the trick before the dot, but I need to fill up the decimals from behind. (The clock-solution does not work here, since there you always fill up zeroes from the left.)
Examples:
00.00 (= Returned Value: 0)
01.00 (= Returned Value: 1)
01.10 (= Returned Value: 1.1)
01.11 (= Returned Value: 1.11)
BEST would be a solution, where no calculation is needed (like Zeropad) to save CPU.
Grateful for some advice