You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In most cases, the loop counter variable is a uint16_t. However, near the end of init_leds() there is the following lines of code which use an uint8_t. This becomes an infinite loop when there are more than 255 LEDs.
for (uint8_tx=0; x<CONFIG.LED_COUNT; x++) {
leds_out[x] =CRGB(0, 0, 0);
}
The text was updated successfully, but these errors were encountered:
In most cases, the loop counter variable is a
uint16_t
. However, near the end ofinit_leds()
there is the following lines of code which use anuint8_t
. This becomes an infinite loop when there are more than 255 LEDs.The text was updated successfully, but these errors were encountered: