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

◆ toString()

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

Definition at line 17 of file crgb.cpp.

17 {
18 fl::Str out;
19 out.append("CRGB(");
20 out.append(int16_t(r));
21 out.append(",");
22 out.append(int16_t(g));
23 out.append(",");
24 out.append(int16_t(b));
25 out.append(")");
26 return out;
27}
Str & append(const T &val)
Definition str.h:439

References fl::Str::append().

+ Here is the call graph for this function: