diff --git a/.github/workflows/build_examples_platformio.yaml b/.github/workflows/build_examples_platformio.yaml index 1ebee7da..b562b2d9 100644 --- a/.github/workflows/build_examples_platformio.yaml +++ b/.github/workflows/build_examples_platformio.yaml @@ -17,7 +17,7 @@ jobs: library_install_git: ${{ steps.store_vars.outputs.library_install_git }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Set environment variables for pushes to any branch if: github.event_name == 'push' @@ -100,7 +100,7 @@ jobs: ] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Set variables run: | diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 00000000..ec819328 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,6 @@ +idf_component_register( + SRC_DIRS "src" + INCLUDE_DIRS "src" + REQUIRES arduino-esp32 +) + \ No newline at end of file