#include <Arduino.h>
#include <Adafruit_NeoPixel.h>
// Configuration des pins et du nombre de LED
#define LED_COUNT_ARCHE1 156
#define LED_PIN_ARCHE1 16
#define LED_COUNT_DISK 33
#define LED_PIN_DISK 18
Adafruit_NeoPixel strip(LED_COUNT_ARCHE1, LED_PIN_ARCHE1,NEO_GRBW + NEO_KHZ800);
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("Hello, ESP32!");
strip.setPixelColor(0, 0, 100, 0, 100);
strip.show();
}
void loop() {
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
}