Merge pull request #15 from synthead/call-NotebookAdapter-emulate-before-LedBlaster-emit_byte

Call NotebookAdapter::emulate before LedBlaster::emit_byte
This commit is contained in:
Maxwell Pray
2023-07-05 20:23:57 -07:00
committed by GitHub
+1 -1
View File
@@ -10,7 +10,7 @@ void loop() {
int serial_byte = Serial.read();
if (serial_byte != -1) {
LedBlaster::emit_byte(serial_byte);
NotebookAdapter::emulate(serial_byte);
LedBlaster::emit_byte(serial_byte);
}
}