FastLED 3.9.15
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages

◆ operator<<() [3/12]

StrStream & fl::StrStream::operator<< ( const CRGB & rgb)
inline

Definition at line 49 of file strstream.h.

49 {
50 mStr.append("CRGB(");
51 mStr.append(rgb.r);
52 mStr.append(",");
53 mStr.append(rgb.g);
54 mStr.append(",");
55 mStr.append(rgb.b);
56 mStr.append(")");
57 return *this;
58 }

References StrStream(), and mStr.

+ Here is the call graph for this function: