From 960b4c43dab1c0f6e41aaf9f4a7c0867c2476ec9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Procha=CC=81zka?= <90197375+P-R-O-C-H-Y@users.noreply.github.com> Date: Wed, 1 Mar 2023 10:58:21 +0100 Subject: [PATCH 01/15] Update upload-artifact action to v3 --- .github/workflows/hil.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/hil.yml b/.github/workflows/hil.yml index 1aafdcaca97..6b9ebd2e06c 100644 --- a/.github/workflows/hil.yml +++ b/.github/workflows/hil.yml @@ -58,7 +58,7 @@ jobs: run: | bash .github/scripts/tests_build.sh -c -t ${{matrix.chip}} -i ${{matrix.chunks}} -m ${{env.MAX_CHUNKS}} - name: Upload ${{matrix.chip}}-${{matrix.chunks}} artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: ${{matrix.chip}}-${{matrix.chunks}}.artifacts path: | @@ -87,7 +87,7 @@ jobs: uses: actions/checkout@v3 - name: Download ${{matrix.chip}}-${{matrix.chunks}} artifacts - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v3 with: name: ${{matrix.chip}}-${{matrix.chunks}}.artifacts path: tests/ @@ -103,7 +103,7 @@ jobs: bash .github/scripts/tests_run.sh -c -t ${{matrix.chip}} -i ${{matrix.chunks}} -m ${{env.MAX_CHUNKS}} -e - name: Upload test result artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 if: always() with: name: test_results-${{matrix.chip}}-${{matrix.chunks}} @@ -118,7 +118,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Upload - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: Event File path: ${{github.event_path}} From 8db79bd0894cae9c0d9302c4945743944c5786e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Procha=CC=81zka?= <90197375+P-R-O-C-H-Y@users.noreply.github.com> Date: Wed, 1 Mar 2023 11:34:55 +0100 Subject: [PATCH 02/15] Fix deprecated set-output --- .github/workflows/hil.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/hil.yml b/.github/workflows/hil.yml index 6b9ebd2e06c..5ca0906e687 100644 --- a/.github/workflows/hil.yml +++ b/.github/workflows/hil.yml @@ -39,7 +39,7 @@ jobs: set -e rm sketches.txt CHUNKS=$(jq -c -n '$ARGS.positional' --args `seq 0 1 $((sketches - 1))`) - echo "::set-output name=chunks::${CHUNKS}" + echo "chunks=${CHUNKS}" >>$GITHUB_OUTPUT Build: needs: gen_chunks From 26a4e3ef6ef9b8278824d94dc781223dbb559333 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Procha=CC=81zka?= <90197375+P-R-O-C-H-Y@users.noreply.github.com> Date: Wed, 1 Mar 2023 12:44:33 +0100 Subject: [PATCH 03/15] updated path + error if no files found --- .github/workflows/hil.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/hil.yml b/.github/workflows/hil.yml index 5ca0906e687..0d44b583c78 100644 --- a/.github/workflows/hil.yml +++ b/.github/workflows/hil.yml @@ -62,8 +62,9 @@ jobs: with: name: ${{matrix.chip}}-${{matrix.chunks}}.artifacts path: | - tests/*/build*/*.bin - tests/*/build*/*.json + tests/**/build*/*.bin + tests/**/build*/*.json + if-no-files-found: error Test: needs: [gen_chunks, Build] name: ${{matrix.chip}}-Test#${{matrix.chunks}} From 5a28c6a735ec5b7c5f124bf14a17cee1c4e7ebd8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Procha=CC=81zka?= <90197375+P-R-O-C-H-Y@users.noreply.github.com> Date: Wed, 1 Mar 2023 13:07:50 +0100 Subject: [PATCH 04/15] update path --- .github/workflows/hil.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/hil.yml b/.github/workflows/hil.yml index 0d44b583c78..6c292fddf44 100644 --- a/.github/workflows/hil.yml +++ b/.github/workflows/hil.yml @@ -62,8 +62,8 @@ jobs: with: name: ${{matrix.chip}}-${{matrix.chunks}}.artifacts path: | - tests/**/build*/*.bin - tests/**/build*/*.json + ${{ github.workspace }}/tests/*/build*/*.bin + ${{ github.workspace }}/tests/*/build*/*.json if-no-files-found: error Test: needs: [gen_chunks, Build] From 10d2754a13470dae839f5782e56b39d7a41f757c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Procha=CC=81zka?= <90197375+P-R-O-C-H-Y@users.noreply.github.com> Date: Wed, 1 Mar 2023 13:29:54 +0100 Subject: [PATCH 05/15] update path + debug ls --- .github/workflows/hil.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/hil.yml b/.github/workflows/hil.yml index 6c292fddf44..246fdbe3211 100644 --- a/.github/workflows/hil.yml +++ b/.github/workflows/hil.yml @@ -53,17 +53,19 @@ jobs: steps: - name: Checkout Repository uses: actions/checkout@v3 - - name: Build sketches run: | bash .github/scripts/tests_build.sh -c -t ${{matrix.chip}} -i ${{matrix.chunks}} -m ${{env.MAX_CHUNKS}} + - name: List files in the repository + run: | + ls ${{ github.workspace }} - name: Upload ${{matrix.chip}}-${{matrix.chunks}} artifacts uses: actions/upload-artifact@v3 with: name: ${{matrix.chip}}-${{matrix.chunks}}.artifacts path: | - ${{ github.workspace }}/tests/*/build*/*.bin - ${{ github.workspace }}/tests/*/build*/*.json + /tests/*/build*/*.bin + /tests/*/build*/*.json if-no-files-found: error Test: needs: [gen_chunks, Build] From 79518917677d688960ebc3fea397e1101dd41e5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Procha=CC=81zka?= <90197375+P-R-O-C-H-Y@users.noreply.github.com> Date: Wed, 1 Mar 2023 13:34:29 +0100 Subject: [PATCH 06/15] dbg path print --- .github/workflows/hil.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/hil.yml b/.github/workflows/hil.yml index 246fdbe3211..52a726f6709 100644 --- a/.github/workflows/hil.yml +++ b/.github/workflows/hil.yml @@ -56,9 +56,15 @@ jobs: - name: Build sketches run: | bash .github/scripts/tests_build.sh -c -t ${{matrix.chip}} -i ${{matrix.chunks}} -m ${{env.MAX_CHUNKS}} - - name: List files in the repository + - name: List files in the tests run: | - ls ${{ github.workspace }} + ls ${{ github.workspace }}/tests/ + - name: List files in the tests/*/ + run: | + ls ${{ github.workspace }}/tests/*/ + - name: List files in the tests/*/build*/ + run: | + ls ${{ github.workspace }}/tests/*/build*/ - name: Upload ${{matrix.chip}}-${{matrix.chunks}} artifacts uses: actions/upload-artifact@v3 with: From 613959c1ceb9fcb41f5fb3d14daff52f8725df73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Procha=CC=81zka?= <90197375+P-R-O-C-H-Y@users.noreply.github.com> Date: Wed, 1 Mar 2023 15:52:57 +0100 Subject: [PATCH 07/15] dbg path remove +added echo with buildpath --- .github/scripts/sketch_utils.sh | 1 + .github/workflows/hil.yml | 9 --------- 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/.github/scripts/sketch_utils.sh b/.github/scripts/sketch_utils.sh index 4a8d500bcbc..15a1a122c76 100755 --- a/.github/scripts/sketch_utils.sh +++ b/.github/scripts/sketch_utils.sh @@ -152,6 +152,7 @@ function build_sketch(){ # build_sketch [ex $xtra_opts "${sketchdir}" elif [ -f "$ide_path/arduino-builder" ]; then echo "Building $sketchname with arduino-builder and FQBN=$currfqbn" + echo "Build path = $build_dir" $ide_path/arduino-builder -compile -logger=human -core-api-version=10810 \ -fqbn=\"$currfqbn\" \ diff --git a/.github/workflows/hil.yml b/.github/workflows/hil.yml index 52a726f6709..8f87f40fab3 100644 --- a/.github/workflows/hil.yml +++ b/.github/workflows/hil.yml @@ -56,15 +56,6 @@ jobs: - name: Build sketches run: | bash .github/scripts/tests_build.sh -c -t ${{matrix.chip}} -i ${{matrix.chunks}} -m ${{env.MAX_CHUNKS}} - - name: List files in the tests - run: | - ls ${{ github.workspace }}/tests/ - - name: List files in the tests/*/ - run: | - ls ${{ github.workspace }}/tests/*/ - - name: List files in the tests/*/build*/ - run: | - ls ${{ github.workspace }}/tests/*/build*/ - name: Upload ${{matrix.chip}}-${{matrix.chunks}} artifacts uses: actions/upload-artifact@v3 with: From 788a164b9513bd34d4fa286e286f5d1791d54864 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Procha=CC=81zka?= <90197375+P-R-O-C-H-Y@users.noreply.github.com> Date: Wed, 1 Mar 2023 16:00:36 +0100 Subject: [PATCH 08/15] change build_dir --- .github/scripts/sketch_utils.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/scripts/sketch_utils.sh b/.github/scripts/sketch_utils.sh index 15a1a122c76..d071dc34716 100755 --- a/.github/scripts/sketch_utils.sh +++ b/.github/scripts/sketch_utils.sh @@ -121,16 +121,16 @@ function build_sketch(){ # build_sketch [ex if [ -n "$ARDUINO_BUILD_DIR" ]; then build_dir="$ARDUINO_BUILD_DIR" elif [ $len -eq 1 ]; then - # build_dir="$sketchdir/build" - build_dir="$HOME/.arduino/build.tmp" + build_dir="$sketchdir/build" + # build_dir="$HOME/.arduino/build.tmp" fi mkdir -p "$ARDUINO_CACHE_DIR" for i in `seq 0 $(($len - 1))` do if [ $len -ne 1 ]; then - # build_dir="$sketchdir/build$i" - build_dir="$HOME/.arduino/build$i.tmp" + build_dir="$sketchdir/build$i" + # build_dir="$HOME/.arduino/build$i.tmp" fi rm -rf $build_dir mkdir -p $build_dir From ca35f9fa1289453de829482bfaeceabf8d6ff259 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Procha=CC=81zka?= <90197375+P-R-O-C-H-Y@users.noreply.github.com> Date: Wed, 1 Mar 2023 16:04:45 +0100 Subject: [PATCH 09/15] fix upload-artifact paths --- .github/workflows/hil.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/hil.yml b/.github/workflows/hil.yml index 8f87f40fab3..693bea18642 100644 --- a/.github/workflows/hil.yml +++ b/.github/workflows/hil.yml @@ -26,7 +26,7 @@ jobs: steps: - name: Checkout Repository uses: actions/checkout@v3 - + - name: Generate Chunks matrix id: gen-chunks run: | @@ -49,7 +49,6 @@ jobs: matrix: chip: ['esp32', 'esp32s2', 'esp32s3', 'esp32c3'] chunks: ${{fromJson(needs.gen_chunks.outputs.chunks)}} - steps: - name: Checkout Repository uses: actions/checkout@v3 @@ -61,8 +60,8 @@ jobs: with: name: ${{matrix.chip}}-${{matrix.chunks}}.artifacts path: | - /tests/*/build*/*.bin - /tests/*/build*/*.json + tests/*/build*/*.bin + tests/*/build*/*.json if-no-files-found: error Test: needs: [gen_chunks, Build] From 3f67e81ec7bd60a81752e3097fad1e25e0590c6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Procha=CC=81zka?= <90197375+P-R-O-C-H-Y@users.noreply.github.com> Date: Wed, 1 Mar 2023 16:43:50 +0100 Subject: [PATCH 10/15] changed build_dirs --- .github/scripts/sketch_utils.sh | 8 ++++---- .github/scripts/tests_run.sh | 6 ++++-- .github/workflows/hil.yml | 8 ++++---- 3 files changed, 12 insertions(+), 10 deletions(-) diff --git a/.github/scripts/sketch_utils.sh b/.github/scripts/sketch_utils.sh index d071dc34716..963c58122cf 100755 --- a/.github/scripts/sketch_utils.sh +++ b/.github/scripts/sketch_utils.sh @@ -121,16 +121,16 @@ function build_sketch(){ # build_sketch [ex if [ -n "$ARDUINO_BUILD_DIR" ]; then build_dir="$ARDUINO_BUILD_DIR" elif [ $len -eq 1 ]; then - build_dir="$sketchdir/build" - # build_dir="$HOME/.arduino/build.tmp" + # build_dir="$sketchdir/build" + build_dir="$HOME/.arduino/tests/$sketchname/build.tmp" fi mkdir -p "$ARDUINO_CACHE_DIR" for i in `seq 0 $(($len - 1))` do if [ $len -ne 1 ]; then - build_dir="$sketchdir/build$i" - # build_dir="$HOME/.arduino/build$i.tmp" + # build_dir="$sketchdir/build$i" + build_dir="$HOME/.arduino/tests/$sketchname/build$i.tmp" fi rm -rf $build_dir mkdir -p $build_dir diff --git a/.github/scripts/tests_run.sh b/.github/scripts/tests_run.sh index 0374b6891b4..ef56fcf2d0a 100755 --- a/.github/scripts/tests_run.sh +++ b/.github/scripts/tests_run.sh @@ -15,7 +15,8 @@ function run_test() { fi if [ $len -eq 1 ]; then - build_dir="tests/$sketchname/build" + # build_dir="tests/$sketchname/build" + build_dir="$HOME/.arduino/tests/$sketchname/build.tmp" report_file="tests/$sketchname/$sketchname.xml" fi @@ -27,7 +28,8 @@ function run_test() { fi if [ $len -ne 1 ]; then - build_dir="tests/$sketchname/build$i" + # build_dir="tests/$sketchname/build$i" + build_dir="$HOME/.arduino/tests/$sketchname/build$i.tmp" report_file="tests/$sketchname/$sketchname$i.xml" fi diff --git a/.github/workflows/hil.yml b/.github/workflows/hil.yml index 693bea18642..b6c91c289e8 100644 --- a/.github/workflows/hil.yml +++ b/.github/workflows/hil.yml @@ -26,7 +26,7 @@ jobs: steps: - name: Checkout Repository uses: actions/checkout@v3 - + - name: Generate Chunks matrix id: gen-chunks run: | @@ -60,8 +60,8 @@ jobs: with: name: ${{matrix.chip}}-${{matrix.chunks}}.artifacts path: | - tests/*/build*/*.bin - tests/*/build*/*.json + ~/.arduino/tests/*/build*.tmp/*.bin + ~/.arduino/tests/*/build*.tmp/*.json if-no-files-found: error Test: needs: [gen_chunks, Build] @@ -89,7 +89,7 @@ jobs: uses: actions/download-artifact@v3 with: name: ${{matrix.chip}}-${{matrix.chunks}}.artifacts - path: tests/ + path: ~/.arduino/tests/ - name: Install dependencies run: | From 53565affe6071f462016d05ec6a9b2e458526d29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Procha=CC=81zka?= <90197375+P-R-O-C-H-Y@users.noreply.github.com> Date: Wed, 1 Mar 2023 16:48:43 +0100 Subject: [PATCH 11/15] move sketchname variable --- .github/scripts/sketch_utils.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/scripts/sketch_utils.sh b/.github/scripts/sketch_utils.sh index 963c58122cf..3168318ad55 100755 --- a/.github/scripts/sketch_utils.sh +++ b/.github/scripts/sketch_utils.sh @@ -117,6 +117,8 @@ function build_sketch(){ # build_sketch [ex # 3. Created at the sketch level as "buildX" where X is the number # of configuration built in case of a multiconfiguration test. + sketchname=$(basename $sketchdir) + ARDUINO_CACHE_DIR="$HOME/.arduino/cache.tmp" if [ -n "$ARDUINO_BUILD_DIR" ]; then build_dir="$ARDUINO_BUILD_DIR" @@ -136,7 +138,6 @@ function build_sketch(){ # build_sketch [ex mkdir -p $build_dir currfqbn=`echo $fqbn | jq -r --argjson i $i '.[$i]'` - sketchname=$(basename $sketchdir) if [ -f "$ide_path/arduino-cli" ]; then echo "Building $sketchname with arduino-cli and FQBN=$currfqbn" From c0b3e541bba99f29f0d9e3b55f5d8f38d1c8af03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Procha=CC=81zka?= <90197375+P-R-O-C-H-Y@users.noreply.github.com> Date: Wed, 5 Apr 2023 10:56:04 +0200 Subject: [PATCH 12/15] Update touch pressed value --- tests/touch/touch.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/touch/touch.ino b/tests/touch/touch.ino index d250f179d87..e21211757d6 100644 --- a/tests/touch/touch.ino +++ b/tests/touch/touch.ino @@ -59,7 +59,7 @@ uint8_t TOUCH_GPIOS[] = {1,2,3,4,5,6,7,8,9,10,11,12/*,13,14*/}; #define INTERRUPT_THRESHOLD 30000 #elif CONFIG_IDF_TARGET_ESP32S3 #define RELEASED_VALUE 25000 //25000- read value to pass test - #define PRESSED_VALUE 100000 //150000+ read value to pass test + #define PRESSED_VALUE 900000 //90000+ read value to pass test #define INTERRUPT_THRESHOLD 80000 #else #error Test not currently supported on this chip. Please adjust and try again! From e2bf6a8551e5b4abe5bb6201d3175257bc40fe44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Procha=CC=81zka?= <90197375+P-R-O-C-H-Y@users.noreply.github.com> Date: Wed, 5 Apr 2023 10:59:15 +0200 Subject: [PATCH 13/15] Run one test only for faster debuging --- .github/workflows/lib.json | 47 -------------------------------------- 1 file changed, 47 deletions(-) diff --git a/.github/workflows/lib.json b/.github/workflows/lib.json index 064d4967f3c..088e8c1c5ab 100644 --- a/.github/workflows/lib.json +++ b/.github/workflows/lib.json @@ -1,56 +1,9 @@ [ { "name": "Adafruit NeoPixel", - "version": "1.10.6", "exclude_targets": [], "sketch_path": [ "~/Arduino/libraries/Adafruit_NeoPixel/examples/strandtest/strandtest.ino" ] - }, - { - "name": "ArduinoBLE", - "exclude_targets": [ - "esp32s2" - ], - "sketch_path": [ - "~/Arduino/libraries/ArduinoBLE/examples/Central/Scan/Scan.ino" - ] - }, - { - "name": "ESP32Servo", - "exclude_targets": [], - "sketch_path": [ - "~/Arduino/libraries/ESP32Servo/examples/Knob/Knob.ino", - "~/Arduino/libraries/ESP32Servo/examples/Sweep/Sweep.ino", - "~/Arduino/libraries/ESP32Servo/examples/PWMExample/PWMExample.ino", - "~/Arduino/libraries/ESP32Servo/examples/Multiple-Servo-Example-Arduino/Multiple-Servo-Example-Arduino.ino" - ] - }, - { - "source-url": "https://github.com/me-no-dev/ESPAsyncWebServer.git", - "required-libs": [ - {"source-url": "https://github.com/me-no-dev/AsyncTCP.git"} - ], - "exclude_targets": [], - "sketch_path": [ - "~/Arduino/libraries/ESPAsyncWebServer/examples/CaptivePortal/CaptivePortal.ino", - "~/Arduino/libraries/ESPAsyncWebServer/examples/ESP_AsyncFSBrowser/ESP_AsyncFSBrowser.ino", - "~/Arduino/libraries/ESPAsyncWebServer/examples/regex_patterns/regex_patterns.ino", - "~/Arduino/libraries/ESPAsyncWebServer/examples/simple_server/simple_server.ino" - ] - }, - { - "name": "FastLED", - "exclude_targets": [], - "sketch_path": [ - "~/Arduino/libraries/FastLED/examples/Blink/Blink.ino" - ] - }, - { - "name": "IRremote", - "exclude_targets": [], - "sketch_path": [ - "~/Arduino/libraries/IRremote/examples/SendDemo/SendDemo.ino" - ] } ] \ No newline at end of file From adabe95151e0929a870a3bce2b8a89328caf21f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Procha=CC=81zka?= <90197375+P-R-O-C-H-Y@users.noreply.github.com> Date: Wed, 5 Apr 2023 10:59:42 +0200 Subject: [PATCH 14/15] Revert "Run one test only for faster debuging" This reverts commit e2bf6a8551e5b4abe5bb6201d3175257bc40fe44. --- .github/workflows/lib.json | 47 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/.github/workflows/lib.json b/.github/workflows/lib.json index 088e8c1c5ab..064d4967f3c 100644 --- a/.github/workflows/lib.json +++ b/.github/workflows/lib.json @@ -1,9 +1,56 @@ [ { "name": "Adafruit NeoPixel", + "version": "1.10.6", "exclude_targets": [], "sketch_path": [ "~/Arduino/libraries/Adafruit_NeoPixel/examples/strandtest/strandtest.ino" ] + }, + { + "name": "ArduinoBLE", + "exclude_targets": [ + "esp32s2" + ], + "sketch_path": [ + "~/Arduino/libraries/ArduinoBLE/examples/Central/Scan/Scan.ino" + ] + }, + { + "name": "ESP32Servo", + "exclude_targets": [], + "sketch_path": [ + "~/Arduino/libraries/ESP32Servo/examples/Knob/Knob.ino", + "~/Arduino/libraries/ESP32Servo/examples/Sweep/Sweep.ino", + "~/Arduino/libraries/ESP32Servo/examples/PWMExample/PWMExample.ino", + "~/Arduino/libraries/ESP32Servo/examples/Multiple-Servo-Example-Arduino/Multiple-Servo-Example-Arduino.ino" + ] + }, + { + "source-url": "https://github.com/me-no-dev/ESPAsyncWebServer.git", + "required-libs": [ + {"source-url": "https://github.com/me-no-dev/AsyncTCP.git"} + ], + "exclude_targets": [], + "sketch_path": [ + "~/Arduino/libraries/ESPAsyncWebServer/examples/CaptivePortal/CaptivePortal.ino", + "~/Arduino/libraries/ESPAsyncWebServer/examples/ESP_AsyncFSBrowser/ESP_AsyncFSBrowser.ino", + "~/Arduino/libraries/ESPAsyncWebServer/examples/regex_patterns/regex_patterns.ino", + "~/Arduino/libraries/ESPAsyncWebServer/examples/simple_server/simple_server.ino" + ] + }, + { + "name": "FastLED", + "exclude_targets": [], + "sketch_path": [ + "~/Arduino/libraries/FastLED/examples/Blink/Blink.ino" + ] + }, + { + "name": "IRremote", + "exclude_targets": [], + "sketch_path": [ + "~/Arduino/libraries/IRremote/examples/SendDemo/SendDemo.ino" + ] } ] \ No newline at end of file From 5ffdb46eb6e6f39e6d3be2dbfb53e1a34b6df4f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Procha=CC=81zka?= <90197375+P-R-O-C-H-Y@users.noreply.github.com> Date: Wed, 5 Apr 2023 13:25:22 +0200 Subject: [PATCH 15/15] fix value --- tests/touch/touch.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/touch/touch.ino b/tests/touch/touch.ino index e21211757d6..42c0cf393a5 100644 --- a/tests/touch/touch.ino +++ b/tests/touch/touch.ino @@ -59,7 +59,7 @@ uint8_t TOUCH_GPIOS[] = {1,2,3,4,5,6,7,8,9,10,11,12/*,13,14*/}; #define INTERRUPT_THRESHOLD 30000 #elif CONFIG_IDF_TARGET_ESP32S3 #define RELEASED_VALUE 25000 //25000- read value to pass test - #define PRESSED_VALUE 900000 //90000+ read value to pass test + #define PRESSED_VALUE 90000 //90000+ read value to pass test #define INTERRUPT_THRESHOLD 80000 #else #error Test not currently supported on this chip. Please adjust and try again!