From 4c2acb940d7ada6599a3fdb9453ea6f8a9f42976 Mon Sep 17 00:00:00 2001 From: Dominic Buchstaller Date: Sat, 23 Feb 2019 08:01:23 +0100 Subject: [PATCH] ensure minimum show_time --- PxMatrix.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PxMatrix.h b/PxMatrix.h index 1706eb7..2e7c0c8 100644 --- a/PxMatrix.h +++ b/PxMatrix.h @@ -836,8 +836,8 @@ void PxMATRIX::latch(uint16_t show_time ) void PxMATRIX::display(uint16_t show_time) { - if (show_time < 5) - show_time =5; + if (show_time < 10) + show_time =10; unsigned long start_time=0; #ifdef ESP8266 ESP.wdtFeed();