diff --git a/RIU/RIU.ino b/RIU/RIU.ino index 57e6c35..1ccf8b3 100644 --- a/RIU/RIU.ino +++ b/RIU/RIU.ino @@ -77,7 +77,7 @@ void setup() { void loop() { if (Serial.available()) { 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); } }