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

◆ toString()

FASTLED_NAMESPACE_BEGIN fl::string CRGB::toString ( ) const

Definition at line 18 of file crgb.cpp.

18 {
19 fl::string out;
20 out.append("CRGB(");
21 out.append(int16_t(r));
22 out.append(",");
23 out.append(int16_t(g));
24 out.append(",");
25 out.append(int16_t(b));
26 out.append(")");
27 return out;
28}
string & append(const BitsetFixed< N > &bs)
Definition str.h:675

References fl::string::append().

+ Here is the call graph for this function: