| 119 | } |
| 120 | |
| 121 | void disableColorAdjustment() { |
| 122 | #if FASTLED_HD_COLOR_MIXING |
| 123 | mColorAdjustment.premixed = CRGB(mColorAdjustment.brightness, mColorAdjustment.brightness, mColorAdjustment.brightness); |
| 124 | mColorAdjustment.color = CRGB(0xff, 0xff, 0xff); |
| 125 | #endif |
| 126 | } |
| 127 | |
| 128 | /// Copy constructor |
| 129 | /// @param other the object to copy |
no test coverage detected