ESP32 Native version of Blinky, featureful controller code for WS2811/WS2812/NeoPixels
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #pragma once
-
- #include "leds.hpp"
- #include "display.hpp"
-
-
- class ScreenLEDs : public LEDStrip {
- public:
- ScreenLEDs(int length = 0);
- void show();
- void length_changing(int length);
-
- private:
- Display display;
- };
|