ESP32 Native version of Blinky, featureful controller code for WS2811/WS2812/NeoPixels
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

16 wiersze
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. };