From 020c385ecc8f1bb15b816e1eb20a2bdd39e110c0 Mon Sep 17 00:00:00 2001 From: Adrian Immer <62163284+lebuni@users.noreply.github.com> Date: Tue, 28 May 2024 13:14:35 +0200 Subject: [PATCH 1/3] Add ZACwire to External libraries compilation test --- .github/workflows/lib.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lib.json b/.github/workflows/lib.json index 453267a2d2d..43c198c4e0d 100644 --- a/.github/workflows/lib.json +++ b/.github/workflows/lib.json @@ -62,5 +62,12 @@ "sketch_path": [ "~/Arduino/libraries/WS2812FX/examples/ws2812fx_spi/ws2812fx_spi.ino" ] + }, + { + "name": "ZACwire for TSic", + "exclude_targets": [], + "sketch_path": [ + "~/examples/FineTuningESP32/FineTuningESP32.ino" + ] } -] \ No newline at end of file +] From 0cfb09a082cbe4c1f72160feba09303ab44749e9 Mon Sep 17 00:00:00 2001 From: Adrian Immer <62163284+lebuni@users.noreply.github.com> Date: Tue, 28 May 2024 13:24:51 +0200 Subject: [PATCH 2/3] fix example path --- .github/workflows/lib.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lib.json b/.github/workflows/lib.json index 43c198c4e0d..b0c35d8e2e5 100644 --- a/.github/workflows/lib.json +++ b/.github/workflows/lib.json @@ -67,7 +67,7 @@ "name": "ZACwire for TSic", "exclude_targets": [], "sketch_path": [ - "~/examples/FineTuningESP32/FineTuningESP32.ino" + "~/Arduino/libraries/ZACwire_for_TSic/examples/FineTuningESP32/FineTuningESP32.ino" ] } ] From fb73f624b63e01dd178af7d0584c6ffee2388c91 Mon Sep 17 00:00:00 2001 From: Adrian Immer <62163284+lebuni@users.noreply.github.com> Date: Tue, 28 May 2024 14:06:46 +0200 Subject: [PATCH 3/3] fix(lib): fixed link to right examples The previously linked example wasn't working, so I linked two other examples, which are more up to date --- .github/workflows/lib.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lib.json b/.github/workflows/lib.json index b0c35d8e2e5..3e369bd7168 100644 --- a/.github/workflows/lib.json +++ b/.github/workflows/lib.json @@ -67,7 +67,8 @@ "name": "ZACwire for TSic", "exclude_targets": [], "sketch_path": [ - "~/Arduino/libraries/ZACwire_for_TSic/examples/FineTuningESP32/FineTuningESP32.ino" + "~/Arduino/libraries/ZACwire_for_TSic/examples/ReadingTwoTSICs/ReadingTwoTSICs.ino", + "~/Arduino/libraries/ZACwire_for_TSic/examples/ReadSingleTSIC206/ReadSingleTSIC206.ino" ] } ]