/*#include <FastLED.h>
#define LED_BUILTIN 38
#define Numleds 1
CRGB leds[Numleds];
void setup() {
FastLED.addLeds<WS2812, LED_BUILTIN, GRB>(leds, Numleds); // GRB ordering is typical
}
void loop() {
leds[0] = CRGB::Red;
FastLED.show();
delay(1000);
leds[0] = CRGB::Black;
FastLED.show();
delay(1000);
}
*/
void setup(){}
void loop(){
rgbLedWrite(38,255,0,0);
delay(1000);
rgbLedWrite(38,0,0,0);
delay(1000);
}