Skip to content

Commit a361fb2

Browse files
committed
Fixed compile error and updated workflows
1 parent d356bee commit a361fb2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88

99
steps:
1010
- uses: actions/checkout@v2
11-
- uses: DoozyX/clang-format-lint-action@v0.12
11+
- uses: DoozyX/clang-format-lint-action@v0.18.2
1212
with:
1313
source: "./src"
1414
exclude: "./src/libs"

examples/Inkplate2/Projects/Inkplate2_Kickstarter_Campaign_Tracker/Inkplate2_Kickstarter_Campaign_Tracker.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ void setup()
5252
// Try connecting to a WiFi network.
5353
// Parameters are network SSID, password, timeout in seconds and whether to print to serial.
5454
// If the Inkplate isn't able to connect to a network stop further code execution and print an error message.
55-
if (!display.connectWiFi(ssid, pass, WIFI_TIMEOUT, true))
55+
if (!display.connectWiFi(ssid, password, WIFI_TIMEOUT, true))
5656
{
5757
//Can't connect to netowrk
5858
// Clear display for the error message

0 commit comments

Comments
 (0)