Hi… how do you test that two color pallets are the same?
I am trying something like:
CRGBPalette16 currentPalette(CRGB::Black);
CRGBPalette16 endPalette(CRGB::Black);
…
if (currentPalette==endPalette) {
Serial.println("Palettes are the same.");
}
However, the condition does not pass.
Am I using this incorrectly?