ESP32 Native version of Blinky, featureful controller code for WS2811/WS2812/NeoPixels
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

30 rindas
723B

  1. idf_component_register(
  2. SRCS
  3. "main.cpp"
  4. "wifi.cpp"
  5. "http_serv.cpp"
  6. "ota.cpp"
  7. "mqtt.cpp"
  8. INCLUDE_DIRS "."
  9. )
  10. # Build static library, do not build test executables
  11. option(BUILD_SHARED_LIBS OFF)
  12. option(BUILD_TESTING OFF)
  13. # Unfortunately the library performs install and export. Would
  14. # have been nice if devs made that an option like BUILD_SHARED_LIBS
  15. # and BUILD_TESTING. Override install() and export() to do nothing
  16. # instead.
  17. function(install)
  18. endfunction()
  19. function(export)
  20. endfunction()
  21. # Import tinyxml2 targets
  22. #add_subdirectory(lib/tinyxml2)
  23. # Link tinyxml2 to main component
  24. #target_link_libraries(${COMPONENT_LIB} PUBLIC tinyxml2)