Disable printing of bits as they come in

This commit is contained in:
Adam Goldsmith 2020-03-28 17:19:16 -04:00
parent cad3579ecb
commit 9e96bcabc0

View File

@ -16,7 +16,7 @@ volatile unsigned long weigand_idle_start;
inline void gotBit(char bit) { inline void gotBit(char bit) {
weigand_idle_start = millis(); weigand_idle_start = millis();
Serial.print(bit, BIN); //Serial.print(bit, BIN);
bitWrite(dataBits, DATA_SIZE - bitCount, bit); bitWrite(dataBits, DATA_SIZE - bitCount, bit);
bitCount++; bitCount++;
} }