ESP32 Native version of Blinky, featureful controller code for WS2811/WS2812/NeoPixels
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

16 строки
225B

  1. #pragma once
  2. #include "leds.hpp"
  3. #include "display.hpp"
  4. class ScreenLEDs : public LEDStrip {
  5. public:
  6. ScreenLEDs(int length = 0);
  7. void show();
  8. void length_changing(int length);
  9. private:
  10. Display display;
  11. };