Call NotebookAdapter::emulate before LedBlaster::emit_byte.

This commit is contained in:
Maxwell Pray
2023-07-05 20:20:29 -07:00
parent 4ed5af8231
commit f2acf6ff20
+1 -1
View File
@@ -10,7 +10,7 @@ void loop() {
int serial_byte = Serial.read(); int serial_byte = Serial.read();
if (serial_byte != -1) { if (serial_byte != -1) {
LedBlaster::emit_byte(serial_byte);
NotebookAdapter::emulate(serial_byte); NotebookAdapter::emulate(serial_byte);
LedBlaster::emit_byte(serial_byte);
} }
} }