fixed bug with wrong indentatiojn after clear

This commit is contained in:
Hans Haupt 2024-06-04 10:14:26 +02:00
parent a4a7bdc04b
commit d67a33c53f

View File

@ -69,6 +69,8 @@ void Display::clear(void){
} }
Wire.endTransmission(); Wire.endTransmission();
} }
this -> charsOnCurrLine = 0;
this -> currLine = 0;
return; return;
}; };