From 19b01955f901f37665b40c682e01b5bec6ce1b03 Mon Sep 17 00:00:00 2001 From: Stefan Kremser Date: Thu, 18 Oct 2018 09:19:20 +0200 Subject: [PATCH] Fixed stupid integer overflow error my bad --- esp8266_deauther/DisplayUI.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esp8266_deauther/DisplayUI.h b/esp8266_deauther/DisplayUI.h index e60e0ef..808727a 100644 --- a/esp8266_deauther/DisplayUI.h +++ b/esp8266_deauther/DisplayUI.h @@ -81,9 +81,9 @@ class DisplayUI { const uint8_t maxLen = 18; const uint8_t lineHeight = 12; - const uint8_t scrollSpeed = 500; // time interval in ms const uint8_t buttonDelay = 250; const uint8_t drawInterval = 100; // 100ms = 10 FPS + const uint16_t scrollSpeed = 500; // time interval in ms const uint16_t screenIntroTime = 2500; const uint16_t screenWidth = 128; const uint16_t sreenHeight = 64;