finished 4.b1

This commit is contained in:
Sem van der Hoeven
2021-03-03 11:55:41 +01:00
parent bd2a5e6091
commit 3196b86762
2 changed files with 12 additions and 3 deletions

View File

@@ -47,7 +47,6 @@ ISR( TIMER2_OVF_vect ) {
int length = snprintf(NULL, 0, "%d", number + 1);
char str[length + 1];
snprintf(str, length + 1, "%d", number + 1);
lcd_write_string(str);
}