ESP32 Native version of Blinky, featureful controller code for WS2811/WS2812/NeoPixels
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

37 líneas
889B

  1. idf_component_register(
  2. SRCS
  3. "main.cpp"
  4. "wifi.cpp"
  5. "http_serv.cpp"
  6. "ota.cpp"
  7. "mqtt.cpp"
  8. "device.cpp"
  9. "utils.cpp"
  10. "leds.cpp"
  11. "presets.cpp"
  12. "spi_leds.cpp"
  13. # "screen_leds.cpp"
  14. # "display.cpp"
  15. "rmt_leds.cpp"
  16. "patterns/gradient.cpp"
  17. "patterns/random.cpp"
  18. "patterns/sparkle.cpp"
  19. INCLUDE_DIRS "."
  20. )
  21. # Build static library, do not build test executables
  22. option(BUILD_SHARED_LIBS OFF)
  23. option(BUILD_TESTING OFF)
  24. # Unfortunately the library performs install and export. Would
  25. # have been nice if devs made that an option like BUILD_SHARED_LIBS
  26. # and BUILD_TESTING. Override install() and export() to do nothing
  27. # instead.
  28. function(install)
  29. endfunction()
  30. function(export)
  31. endfunction()