We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04d3e8f commit 0e9315dCopy full SHA for 0e9315d
keyboardv1/keyboardv1.ino
@@ -55,7 +55,7 @@ void loop() {
55
if (useSerialLibrary) {
56
Serial.print("Raw char: "); Serial.print(key); Serial.print(" decimal 0b"); Serial.println(key, BIN);
57
}
58
- if (key != 0) {
+ if (key != 0 && key != 255) {
59
// If the keyboard has no power it will return all lows, sending back an avalanche of
60
// zeros. Ignore (for now?)
61
sendChar(key);
0 commit comments