Skip to content

Commit b519e91

Browse files
authored
Fixing wrong constants in order to re-enable CI build (#103)
1 parent e7fd93c commit b519e91

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed
+6-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
#ifndef SECRET_SSID
2-
#define SECRET_SSID ""
3-
#warning "You need to define SECRET_SSID in tab/arduino_secrets.h"
1+
#ifndef SECRET_WIFI_NAME
2+
#define SECRET_WIFI_NAME ""
3+
#warning "You need to define SECRET_WIFI_NAME in tab/arduino_secrets.h"
44
#endif
55

6-
#ifndef SECRET_PASS
7-
#define SECRET_PASS ""
8-
#warning "You need to define SECRET_PASS in tab/arduino_secrets.h"
6+
#ifndef SECRET_PASSWORD
7+
#define SECRET_PASSWORD ""
8+
#warning "You need to define SECRET_PASSWORD in tab/arduino_secrets.h"
99
#endif

examples/WiFi_Cloud_Blink_with_security_credentials/WiFi_Cloud_Blink_with_security_credentials.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,4 +75,4 @@ void sendString(String stringToSend) {
7575
if (lastSentChar != '\n') {
7676
CloudSerial.write('\n');
7777
}
78-
}
78+
}

0 commit comments

Comments
 (0)