findUntil()
Serial.findUntil() reads data from the serial buffer until a target string of given length or terminator string is found. The function returns true if the target string is found, false if it times out.Serial.findUntil(target, terminal)
target: the string to search for. Allowed data types: char. terminal: the terminal string in the search. Allowed data types: char.
boolean