Multiple queries at the same time

This may not help with the actual issue, but I couldn't help noticing you have 200 lines of code dedicated to setting 200 LEDs to the color Red. Then the same for other colors.

Why not a construct like this instead?
for (int i = 0; i < 200, i++)
leds[i] = crgb::Red;