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: 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() { 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)