Serial.find()
Description
Serial.find()
reads data from the serial buffer until the target is found. The function returns true
if target is found, false
if it times out.Serial.find()
inherits from the stream utility class.Syntax
Serial.find(target)
Serial.find(target, length)
Parameters
: serial port object. See the list of available serial ports for each board on the Serial main page.Serial
: the string to search for. Allowed data types:target
.char
: length of the target. Allowed data types:length
.size_t
Returns
Data type:
bool
.See also
Suggest changes
The content on docs.arduino.cc is facilitated through a public GitHub repository. If you see anything wrong, you can edit this page here.
License
The Arduino documentation is licensed under the Creative Commons Attribution-Share Alike 4.0 license.