Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pull Request to Fix name mistake and CI update to fix Issue #25 #26

Merged
merged 4 commits into from
Aug 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
1 change: 1 addition & 0 deletions examples/SwitchExample/SwitchExample.ino
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down
4 changes: 2 additions & 2 deletions library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=avdweb_Switch
version=1.2.5
name=Switch
version=1.2.6
author=Albert van Dalen <http://www.avdweb.nl>
license=GPL-3.0-or-later
maintainer=Abhijit Bose (aka. Boseji) <boseji.com>
Expand Down
Loading