From 9e96bcabc002369d370236ff804d17c566d7d3b4 Mon Sep 17 00:00:00 2001 From: Adam Goldsmith Date: Sat, 28 Mar 2020 17:19:16 -0400 Subject: [PATCH] Disable printing of bits as they come in --- hidReader.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hidReader.ino b/hidReader.ino index 35045ec..3321e23 100644 --- a/hidReader.ino +++ b/hidReader.ino @@ -16,7 +16,7 @@ volatile unsigned long weigand_idle_start; inline void gotBit(char bit) { weigand_idle_start = millis(); - Serial.print(bit, BIN); + //Serial.print(bit, BIN); bitWrite(dataBits, DATA_SIZE - bitCount, bit); bitCount++; }