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