From d5c382840f6baf13822ad0e4db3312c7ada0f105 Mon Sep 17 00:00:00 2001 From: Jonathan Naylor Date: Fri, 4 Nov 2016 10:24:41 +0000 Subject: [PATCH] Make the LED flash a little faster. --- UMP/UMP.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/UMP/UMP.ino b/UMP/UMP.ino index b3d00e8..8de2d98 100644 --- a/UMP/UMP.ino +++ b/UMP/UMP.ino @@ -144,13 +144,13 @@ void loop() m_count++; if (m_started) { - if (m_count > 32000U) { + if (m_count > 3200U) { digitalWrite(PIN_LED, m_led ? LOW : HIGH); m_led = !m_led; m_count = 0U; } } else { - if (m_count > 320000U) { + if (m_count > 32000U) { digitalWrite(PIN_LED, m_led ? LOW : HIGH); m_led = !m_led; m_count = 0U;