From e183d12c2dd63deea46ca5f16f8385d6e71dc689 Mon Sep 17 00:00:00 2001 From: Gergely Nagy Date: Wed, 1 Feb 2017 22:56:39 +0100 Subject: [PATCH] Drop updateFrequency to 50 cycles Signed-off-by: Gergely Nagy --- src/Akela/Heatmap.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Akela/Heatmap.cpp b/src/Akela/Heatmap.cpp index 042b611c..5b1d0d46 100644 --- a/src/Akela/Heatmap.cpp +++ b/src/Akela/Heatmap.cpp @@ -22,7 +22,7 @@ namespace Akela { static uint8_t heatmap[ROWS][COLS]; static uint16_t totalKeys; static uint8_t highestCount; - static uint16_t updateFrequency = 500; + static uint16_t updateFrequency = 50; static uint16_t loopCount; static const float heatColors[][3] = {{0.0, 0.0, 0.0}, {0.1, 1, 0.1}, {1, 1, 0.1}, {1, 0.1, 0.1}};