ESP32 Native version of Blinky, featureful controller code for WS2811/WS2812/NeoPixels
25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
- #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;
- };
|