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.
|
- idf_component_register(
-
- SRCS
- "main.cpp"
- "wifi.cpp"
- "http_serv.cpp"
- "ota.cpp"
- "mqtt.cpp"
- "device.cpp"
- "utils.cpp"
- "leds.cpp"
- "presets.cpp"
- "spi_leds.cpp"
- "patterns/gradient.cpp"
- "patterns/random.cpp"
- "patterns/sparkle.cpp"
-
- INCLUDE_DIRS "."
- )
-
- # Build static library, do not build test executables
- option(BUILD_SHARED_LIBS OFF)
- option(BUILD_TESTING OFF)
-
- # Unfortunately the library performs install and export. Would
- # have been nice if devs made that an option like BUILD_SHARED_LIBS
- # and BUILD_TESTING. Override install() and export() to do nothing
- # instead.
- function(install)
- endfunction()
-
- function(export)
- endfunction()
|