Skip to content

Commit 257885c

Browse files
authored
Merge pull request #26 from ardlib/master
Pull Request to Fix name mistake and CI update to fix Issue #25
2 parents 3fa3767 + ac9c0c3 commit 257885c

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/ci.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v4
1414
- uses: arduino/arduino-lint-action@v1
1515
with:
16-
library-manager: submit
16+
library-manager: update
1717
compliance: strict
1818

1919
format:

examples/SwitchExample/SwitchExample.ino

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ void beepCallbackFunction(void *s) // optional
2222
{
2323
tone(3, 2400, 5); // is non-blocking
2424
// Serial.print("BeepCallback: "); Serial.println((char*)s);
25+
(void)s; // Fix Unused warning
2526
}
2627

2728
void setup() {

library.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
name=avdweb_Switch
2-
version=1.2.5
1+
name=Switch
2+
version=1.2.6
33
author=Albert van Dalen <http://www.avdweb.nl>
44
license=GPL-3.0-or-later
55
maintainer=Abhijit Bose (aka. Boseji) <boseji.com>

0 commit comments

Comments
 (0)