Skip to content

Commit 5083d72

Browse files
committed
Update baud delay to 3387 usec
Determined via the logic analyzer that the 110baud data is sent with 3387 usec delay
1 parent 031c60f commit 5083d72

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vg4_keyboard/keyboardv0/keyboardv0.ino

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ void setup() {
1919
Serial.println("Hello keyboardv0");
2020
}
2121

22-
// Microseconds to wait between bits. Corresponds to 110 baud.
23-
const int baudDelay = 3333;
22+
// Microseconds to wait between bits. Corresponds to 110 baud, empirically determined.
23+
const int baudDelay = 3387;
2424
int allData[9];
2525

2626
void loop() {

0 commit comments

Comments
 (0)