| 1234567891011121314151617181920 |
- //
- // Created by emilr on 2022-04-13.
- //
- #include <Arduino.h>
- #include "../.pio/libdeps/esp32doit-devkit-v1/Adafruit NeoPixel/Adafruit_NeoPixel.h"
- #define LED_PIN 4
- #define NUM_LEDS 10
- #ifndef UNTITLED_MAIN_H
- #define UNTITLED_MAIN_H
- extern Adafruit_NeoPixel leds;
- struct light {
- int mapped;
- uint32_t color;
- };
- #endif //UNTITLED_MAIN_H
|