We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70786dc commit eb90000Copy full SHA for eb90000
cores/esp32/esp32-hal-rgb-led.c
@@ -15,7 +15,7 @@ void neopixelWrite(uint8_t pin, uint8_t red_val, uint8_t green_val, uint8_t blue
15
return;
16
}
17
18
- int color[] = {green_val, red_val, blue_val}; // Color coding is in order GREEN, RED, BLUE
+ int color[] = {red_val, green_val, blue_val};
19
int i = 0;
20
for (int col = 0; col < 3; col++) {
21
for (int bit = 0; bit < 8; bit++) {
0 commit comments