Hi there
I buy 6 of CJMCU-64-Bit-WS2812-5050-RGB-LED-Driver-Development-Board and I use the FastLED library.
The problem is that the every board work just until some LEDs
Is not work until led 64...
For example now I have a board that work until led 38... and after that
no led is open.
Is this defect or I wrong something please ?
I use NodeMCU 12e and also I put some codes before #include <FastLED.h> ...codes that I see on the FastLed help page:
Hi all, I have a simple question that I can't find the solution.
I am trying to replace the delay() for something else, but it does not work:
Instead of:
fastled.show()
delay(DELAY_MS)
I try:
if time_now > last_time + DELAY_MS
{fastled.show(); last_time = time_now}
So both codes are executing fastled.show() at the same time, but the later do not show the palettes correct.
Any idea why this is happening?