Could you please enlighten me about how to make numeral display full ( not split digit ), for instance:
ZHR → 071 ( show full 3 digit leading 0 if ZHR below 100 )
ZSC → 0534 ( show full 4 digit leading 0 if ZSC below 1000)
BLN → 095 ( leading 0 if BLN below 100 )
Thank you very much @alsx65 i inspected your design and learned about the formulas.
I’ve tried the split digit method and it seems the text alignment in between is always looks weird when it shows like 0 12 there’s a gap between 0 and 1, but it looks good when it shows like 055
There is the new “pad(number, digits)” function so for example (pad(#BLN#,3)) or (pad(#ZSC#,4)) should work. Note that it will cut of the front digit if it exceeds the given number (like at 10000steps the mentioned example will only show four zeros) and % mark of the #BLP# tag counts as digit too.
It also works with the temperature (pad(#WCT#,3)), humidity (pad(#WCHP#,4)) and digital chrono functions (pad(#SWES#,6)). The last one will be VERY HELPFUL for me and @russellcresser .