initial code

This commit is contained in:
2021-04-26 17:33:24 +02:00
parent 3c951d4c54
commit be40ce60e8
7 changed files with 140 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
#include <Arduino.h>
#include "FastLED.h"
#define WS_DAT 14
CRGB leds[1];
void setup() {
// put your setup code here, to run once:
FastLED.addLeds<WS2812B, WS_DAT, RGB>(leds, 1);
}
void loop() {
// put your main code here, to run repeatedly:
}