From 17b840d27f5fc1f0a62033b807ef8aff369fca54 Mon Sep 17 00:00:00 2001 From: Martino Facchin Date: Mon, 1 Jun 2015 14:06:32 +0000 Subject: [PATCH] Add a Stream::find(char) method --- cores/arduino/Stream.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cores/arduino/Stream.h b/cores/arduino/Stream.h index a810132..15f6761 100644 --- a/cores/arduino/Stream.h +++ b/cores/arduino/Stream.h @@ -64,6 +64,8 @@ class Stream : public Print bool find(uint8_t *target, size_t length) { return find ((char *)target, length); } // returns true if target string is found, false if timed out + bool find(char target) { return find (&target, 1); } + bool findUntil(char *target, char *terminator); // as find but search ends if the terminator string is found bool findUntil(uint8_t *target, char *terminator) { return findUntil((char *)target, terminator); }