diff --git a/TM1637Display.cpp b/TM1637Display.cpp index 2f45f19..eada692 100644 --- a/TM1637Display.cpp +++ b/TM1637Display.cpp @@ -167,12 +167,13 @@ void TM1637Display::showNumberBaseEx(int8_t base, uint16_t num, uint8_t dots, bo num /= base; } - - if(dots != 0) - { - showDots(dots, digits); - } } + + if(dots != 0) + { + showDots(dots, digits); + } + setSegments(digits, length, pos); }