#include // library for NeoPixels #define PIN_NEO_PIXEL D3 // Xiao pin that connects to NeoPixel #define NUM_PIXELS 1 // The number of LEDs Adafruit_NeoPixel NeoPixel(NUM_PIXELS, PIN_NEO_PIXEL, NEO_GRB + NEO_KHZ800); // set the NeoPixel initialization void setup() { NeoPixel.begin(); // initialize the NeoPixel strip object } void loop() { for (int i = 0; i < 256; i++) { byte r = (i < 85) ? i * 3 : (i < 170) ? 255 - (i - 85) * 3 : 0; byte g = (i < 85) ? 255 - i * 3 : (i < 170) ? 0 : (i - 170) * 3; byte b = (i < 85) ? 0 : (i < 170) ? (i - 85) * 3 : 255 - (i - 170) * 3; NeoPixel.setPixelColor(0, r, g, b); // set color NeoPixel.show(); // output the color delay(10); // short delay for the color change } }