ESP32 Native version of Blinky, featureful controller code for WS2811/WS2812/NeoPixels
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
294B

  1. #pragma once
  2. #include <string>
  3. #include <map>
  4. #include "leds.hpp"
  5. namespace Presets {
  6. const Pattern* find(const std::string&);
  7. std::map<std::string, const Pattern*>::const_iterator map_begin();
  8. std::map<std::string, const Pattern*>::const_iterator map_end();
  9. void reload();
  10. } // Presets