I’m trying to understand the behavior of the Serial.readStringUntil()
function in Arduino.
- If I set the timeout to zero using
Serial.setTimeout(0)
, does this make theSerial.readStringUntil()
function non-blocking? - What is the behavior of
Serial.readStringUntil()
when the timeout is set to its default value of 1000 milliseconds?