comment out display calls in oledclearline and oledcleardata functions

This commit is contained in:
Manuel Weiser 2025-02-13 06:44:26 +01:00
parent ec0d7d63de
commit 520ef98193

View File

@ -32,7 +32,7 @@ void oledclearline() {
display.drawPixel(x, y, BLACK);
}
}
display.display();
//display.display();
}
void oledcleardata() {
@ -42,7 +42,7 @@ void oledcleardata() {
display.drawPixel(x, y, BLACK);
}
}
display.display();
//display.display();
}
int oled_center_h(String text) {