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

◆ toString()

fl::string CRGB::toString ( ) const

Definition at line 17 of file crgb.cpp.hpp.

17 {
18 fl::string out;
19 out.append("CRGB(");
20 out.append(fl::i16(r));
21 out.append(",");
22 out.append(fl::i16(g));
23 out.append(",");
24 out.append(fl::i16(b));
25 out.append(")");
26 return out;
27}
string & append(const bitset_fixed< N > &bs) FL_NOEXCEPT
Definition string.h:284

References fl::string::append().

+ Here is the call graph for this function: