Skip to content

Commit

Permalink
Make the LED flash a little faster.
Browse files Browse the repository at this point in the history
  • Loading branch information
g4klx authored Nov 4, 2016
1 parent 4581a7c commit d5c3828
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions UMP/UMP.ino
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit d5c3828

Please sign in to comment.