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