/**
ESP32 + DHT22 Example for Wokwi
https://wokwi.com/arduino/projects/322410731508073042
*/
#define LED_PIN 32 // пин
#define LED_NUM 50 // количество светодиодов
#include "FastLED.h"
CRGB leds[LED_NUM];
//int i=0;
int arr[] = {0,5,2};
void setup() {
Serial.begin(115200);
FastLED.addLeds<WS2812, LED_PIN, GRB>(leds, LED_NUM);
Serial.println(sizeof(arr) / sizeof(arr[0]));
delay(1);
for (int i = 0; i < sizeof(arr) / sizeof(arr[0]); i = i + 1) {
leds[arr[i]].setRGB(0, 255, 0);
}
FastLED.show();
}
// void loop() {
// FastLED.clear();
// FastLED.show();
// delay(1);
// Serial.println(i);
// leds[i].setRGB(0, 255, 0);
// FastLED.show();
// delay(500);
// i++;
// if(i==LED_NUM) {i=0;};
// }
// byte counter;
void loop() {
// FastLED.clear();
// leds[counter] = CRGB::CRGB::LimeGreen;
// if (++counter >= LED_NUM) counter = 0;
// FastLED.show();
// delay(200);
}