| 15 | |
| 16 | |
| 17 | fl::string CRGB::toString() const { |
| 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 | } |
| 28 | |
| 29 | CRGB CRGB::computeAdjustment(fl::u8 scale, const CRGB &colorCorrection, |
| 30 | const CRGB &colorTemperature) { |
no test coverage detected