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
{{ message }}
This repository has been archived by the owner on Nov 5, 2024. It is now read-only.
Hi everyone,
sometimes during development it is good NOT to cut LED strips to specified length before testing.
But original .ino sets unused LEDs to BRIGHT WHITE- rather annoying IMHO :-)
So for testing You can make minor changes:
add a new #define: #define LEDS_TOTAL 50 //how many LEDs are at all- Your number
Hi everyone,
sometimes during development it is good NOT to cut LED strips to specified length before testing.
But original .ino sets unused LEDs to BRIGHT WHITE- rather annoying IMHO :-)
So for testing You can make minor changes:
add a new #define:
#define LEDS_TOTAL 50 //how many LEDs are at all- Your number
modify size of arrays:
CRGB leds[LEDS_TOTAL]; //was NUM_LEDS
CRGB ledsTemp[LEDS_TOTAL]; //was NUM_LEDS
in setup() black out unused:
//Nonused LEDS black
So the unused LEDs will be black :-)
Best regards and hope this will be of some help,JR
And BTW thanks for a superb and COLORFUL development...
The text was updated successfully, but these errors were encountered: