Browse Source

Reduced delay between commands in loops

  Changed from 40 milliseconds to 30 milliseconds.

  Issue with double trigger/action appears to be no more.
david 3 years ago
parent
commit
991e33a208
1 changed files with 1 additions and 1 deletions
  1. 1 1
      InfraTrans/InfraTrans.ino

+ 1 - 1
InfraTrans/InfraTrans.ino

@@ -7,7 +7,7 @@ long code = 0;
 int count = 0;
 bool repeat = false;
 int parse_item = 0;
-const int CODE_DELAY = 40;
+const int CODE_DELAY = 30;
 
 void reset_code() {
   code = 0;