From c785c169a1a518b74614b240d4c8a8526777d46d Mon Sep 17 00:00:00 2001 From: norbert-walter Date: Wed, 23 Mar 2022 13:13:43 +0100 Subject: [PATCH] Fix double full display update --- lib/obp60task/obp60task.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/obp60task/obp60task.cpp b/lib/obp60task/obp60task.cpp index d2eda8c..3632bd4 100644 --- a/lib/obp60task/obp60task.cpp +++ b/lib/obp60task/obp60task.cpp @@ -425,6 +425,7 @@ void OBP60Task(GwApi *api){ // #9 or #10 Refresh display after a new page after 4s waiting time and if refresh is disabled if(refreshmode == true && (keyboardMessage == 9 || keyboardMessage == 10)){ starttime4 = millis(); + starttime2 = millis(); // Reset the timer for full display update delayedDisplayUpdate = true; } }