#include <Arduino.h>
#include <FastLED.h>
// Define the number of LEDs and the data pin
#define NUM_LEDS 16
#define DATA_PIN 5
CRGB leds[NUM_LEDS];
void setup() {
// Initialize the LED strip
FastLED.addLeds<NEOPIXEL, DATA_PIN>(leds, NUM_LEDS);
}
void loop() {
// Color fade animation
for (int hue = 0; hue < 256; hue++) {
// Set the LED color using HSV (Hue, Saturation, Value)
leds[0] = CHSV(hue, 255, 255);
FastLED.show();
delay(10); // Adjust delay for speed of animation
}
}
esp:0
esp:1
esp:2
esp:3
esp:4
esp:5
esp:6
esp:7
esp:8
esp:9
esp:10
esp:11
esp:12
esp:13
esp:15
esp:18
esp:19
esp:20
esp:21
esp:22
esp:23
esp:3V3
esp:RST
esp:5V
esp:GND.1
esp:NC0
esp:NC1
esp:GND.2
esp:GND.3
esp:RX
esp:TX
esp:GND.4
ring1:GND
ring1:VCC
ring1:DIN
ring1:DOUT