timing update

This commit is contained in:
philippd 2024-05-14 23:02:33 +02:00
parent 46e89a182b
commit 433b2b523b

View File

@ -77,7 +77,7 @@ void setup() {
void loop() { void loop() {
if (Serial.available()) { if (Serial.available()) {
String command = Serial.readStringUntil('\n'); String command = Serial.readStringUntil('\n');
delay(50); // Small delay to make communication more interesting delay(5); // Small delay to make communication more interesting
handleCommand(command); handleCommand(command);
} }
} }