Skip to content

Commit

Permalink
Fix default param typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonacox committed Aug 24, 2021
1 parent f329d3a commit ae1fea1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions TM1637TinyDisplay.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ void TM1637TinyDisplay::showNumberBaseEx(int8_t base, uint16_t num, uint8_t dots
setSegments(digits, length, pos);
}

void TM1637TinyDisplay::showString(const char s[], uint8_t length, uint8_t pos, uint8_t dots = 0)
void TM1637TinyDisplay::showString(const char s[], uint8_t length, uint8_t pos, uint8_t dots)
{
// digits[MAXDIGITS] output array to render
memset(digits,0,sizeof(digits));
Expand Down Expand Up @@ -403,7 +403,7 @@ void TM1637TinyDisplay::showString(const char s[], uint8_t length, uint8_t pos,
}
}

void TM1637TinyDisplay::showString_P(const char s[], uint8_t length, uint8_t pos, uint8_t dots = 0)
void TM1637TinyDisplay::showString_P(const char s[], uint8_t length, uint8_t pos, uint8_t dots)
{
// digits[MAXDIGITS] output array to render
memset(digits,0,sizeof(digits));
Expand Down

0 comments on commit ae1fea1

Please sign in to comment.