#include <Adafruit_NeoPixel.h>

#define NEOPIXEL_PIN 27 // Define the data pin connected to the Neopixel Ring.
#define NUM_PIXELS 16   // Define the number of pixels in your Neopixel Ring.

Adafruit_NeoPixel strip = Adafruit_NeoPixel(NUM_PIXELS, NEOPIXEL_PIN, NEO_GRB + NEO_KHZ800);

void setup() {
  strip.begin();
  strip.show(); // Initialize all pixels to 'off'
}

void loop() {
  // Example: fill the Neopixel Ring with a color (e.g., red).
    colorWipe(strip.Color(255, 0, 0), 30); // Red
    
}

// Fill the dots one after the other with a color
void colorWipe(uint32_t color) {
  strip.setPixelColor(NUM_PIXELS, red);
    strip.show();
    delay(500);
}
esp:VIN
esp:GND.2
esp:D13
esp:D12
esp:D14
esp:D27
esp:D26
esp:D25
esp:D33
esp:D32
esp:D35
esp:D34
esp:VN
esp:VP
esp:EN
esp:3V3
esp:GND.1
esp:D15
esp:D2
esp:D4
esp:RX2
esp:TX2
esp:D5
esp:D18
esp:D19
esp:D21
esp:RX0
esp:TX0
esp:D22
esp:D23
ring1:GND
ring1:VCC
ring1:DIN
ring1:DOUT