greetings....
my code
#include <FastLED.h>
#define NUM_LEDS 60
#define DATA_PIN 6
CRGB leds[NUM_LEDS];
void setup() {
// put your setup code here, to run once:
FastLED.addLeds<NEOPIXEL, DATA_PIN>(leds, NUM_LEDS);
FastLED.clear();
}
void loop() {
FastLED.setBrightness(200);
motif2();
}
void motif2() {
for (int j = 0; j < NUM_LEDS; j++) {
leds[j] = CRGB(255,127,0);
FastLED.show();
delay(50);
}
delay(100);
for (int i = 0; i < NUM_LEDS; i++) {
leds[i] = CRGB(0,0,0);
FastLED.show();
delay(50);
}
delay(100);
}
question:
- ON strip : RED led turn on first and cotinue to Green led turn on.
- OFF strip: RED led turn off first and cointue to Green led turn off.
using Adafruit_NeoPixel.h and FastLED.h have same result.
why this is happen?
thank you in advance