FastLED 3.9.15
Loading...
Searching...
No Matches

◆ readSerialJson()

fl::string readSerialJson ( )

Definition at line 160 of file Remote.ino.

160 {
162 while (Serial.available()) {
163 char c = Serial.read();
164 if (c == '\n' || c == '\r') break;
165 result += c;
166 }
167 return result;
168}
expected< T, E > result
Alias for expected (Rust-style naming)
Definition result.h:31
#define Serial
Definition serial.h:304

References Serial.

Referenced by loop().

+ Here is the caller graph for this function: