From 520ef9819357e97d9ed7c8baea22a8e4e8d502d5 Mon Sep 17 00:00:00 2001 From: Manuel Weiser Date: Thu, 13 Feb 2025 06:44:26 +0100 Subject: [PATCH] comment out display calls in oledclearline and oledcleardata functions --- src/display.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/display.cpp b/src/display.cpp index eda0777..52eca6b 100644 --- a/src/display.cpp +++ b/src/display.cpp @@ -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) {