This commit is contained in:
Wessel 2026-04-20 10:53:50 +02:00 committed by GitHub
commit f9d43e64ca
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
14 changed files with 128 additions and 9 deletions

View file

@ -117,6 +117,8 @@ void setup() {
}
void loop() {
board.loop();
int len = strlen(command);
while (Serial.available() && len < sizeof(command)-1) {
char c = Serial.read();