I'm setting a series of variables with: uint32_t currentLedColor[9]
What I'd like to check is if certain ones of those are the same.
Basically want to say if currentLedColor[0] and currentLedColor[1] and currentLedColor[2] are equal
How would I write that?
asked May 13, 2016 at 14:02
1 Answer 1
You run multiple checks. For example:
if (currentLedColor[0] == currentLedColor[1] && currentLedColor[0] == currentLedColor[2]) {
// do something
}
answered May 13, 2016 at 14:12
lang-cpp