Skip to content

Commit bcf2fcd

Browse files
committed
Merge branch 'trunk' of https://github.com/dplassgit/arduino into trunk
2 parents 80e2783 + 3338939 commit bcf2fcd

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed
85.7 KB
Binary file not shown.

keyboardv1/keyboardv1.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ void loop() {
5555
if (useSerialLibrary) {
5656
Serial.print("Raw char: "); Serial.print(key); Serial.print(" decimal 0b"); Serial.println(key, BIN);
5757
}
58-
if (key != 0) {
58+
if (key != 0 && key != 255) {
5959
// If the keyboard has no power it will return all lows, sending back an avalanche of
6060
// zeros. Ignore (for now?)
6161
sendChar(key);

0 commit comments

Comments
 (0)