#define FASTLED_INTERNAL
#include <FastLED.h>
CRGB leds[40];
void setup() {
// put your setup code here, to run once:
Serial1.begin(115200);
Serial1.println("Hello, Raspberry Pi Pico!");
pinMode(26, OUTPUT);
FastLED.addLeds<NEOPIXEL, 26>(leds, 40);
}
void loop() {
// put your main code here, to run repeatedly:
fill_solid(leds, 40, CRGB::Green);
FastLED.show();
delay(1); // this speeds up the simulation
}