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.

13 lines
403B

  1. # The following lines of boilerplate have to be in your project's
  2. # CMakeLists in this exact order for cmake to work correctly
  3. cmake_minimum_required(VERSION 3.16)
  4. include($ENV{IDF_PATH}/tools/cmake/project.cmake)
  5. include($ENV{IOT_SOLUTION_PATH}/component.cmake)
  6. project(blinky)
  7. target_add_binary_data(blinky.elf "main/broker.pem" TEXT)
  8. spiffs_create_partition_image(storage files FLASH_IN_PROJECT)