From a8a170cdbfd1430f53a1d9008a668d0a1037908e Mon Sep 17 00:00:00 2001 From: boseji Date: Sun, 18 Aug 2024 08:31:00 +0530 Subject: [PATCH 1/3] Typo fix in Library Name for Compatibility Issue #25 --- library.properties | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library.properties b/library.properties index 55a4781..eec16ee 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ -name=avdweb_Switch -version=1.2.5 +name=Switch +version=1.2.6 author=Albert van Dalen license=GPL-3.0-or-later maintainer=Abhijit Bose (aka. Boseji) From 781d77fcb1270809b6b203d272242648559826a9 Mon Sep 17 00:00:00 2001 From: boseji Date: Sun, 18 Aug 2024 08:33:02 +0530 Subject: [PATCH 2/3] Switching to update in CI --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b773aa6..c01d509 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -13,7 +13,7 @@ jobs: - uses: actions/checkout@v4 - uses: arduino/arduino-lint-action@v1 with: - library-manager: submit + library-manager: update compliance: strict format: From ac9c0c321c89845840decd80c6f7680512952ce1 Mon Sep 17 00:00:00 2001 From: boseji Date: Sun, 18 Aug 2024 08:58:45 +0530 Subject: [PATCH 3/3] Fix for Warning on Unused Variable --- examples/SwitchExample/SwitchExample.ino | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/SwitchExample/SwitchExample.ino b/examples/SwitchExample/SwitchExample.ino index 10c8020..e92c4cf 100644 --- a/examples/SwitchExample/SwitchExample.ino +++ b/examples/SwitchExample/SwitchExample.ino @@ -22,6 +22,7 @@ void beepCallbackFunction(void *s) // optional { tone(3, 2400, 5); // is non-blocking // Serial.print("BeepCallback: "); Serial.println((char*)s); + (void)s; // Fix Unused warning } void setup() {