Skip to content

Commit e3811a0

Browse files
committed
Removed ssid and password
1 parent bb2a430 commit e3811a0

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

examples/Inkplate5/Advanced_Inkplate_Features/Inkplate_Web_Server/Inkplate_Web_Server.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
#include <WiFiClient.h> //Include ESP32 WiFi library for AP
3131
#include <uri/UriBraces.h>
3232

33-
#define ssid "Inkplate"
34-
#define pass "e-radionica"
33+
#define ssid ""
34+
#define pass ""
3535

3636
Inkplate display(INKPLATE_1BIT); // Create an object on Inkplate library and also set library into 1 Bit mode (BW)
3737
WebServer server(80); // Create Web server on port 80 (HTTP port number)

examples/Inkplate5/Others/Inkplate_VariPass_Graphs/Inkplate_VariPass_Graphs.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@
3333
#include "WiFi.h" //Include library for WiFi
3434
Inkplate display(INKPLATE_1BIT); // Create an object on Inkplate library and also set library into 1 Bit mode (BW)
3535

36-
const char ssid[] = "Soldered"; // Your WiFi SSID
37-
const char *password = "dasduino"; // Your WiFi password
36+
const char ssid[] = ""; // Your WiFi SSID
37+
const char *password = ""; // Your WiFi password
3838

3939
void setup()
4040
{

examples/Inkplate5/Projects/Campaign_Tracker_Example/Campaign_Tracker_Example.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ void setup()
4646
delay(5000);
4747
}
4848

49-
while (!display.joinAP("e-radionica.com", "croduino"))
49+
while (!display.joinAP("", ""))
5050
{
5151
Serial.println("Connecting to wifi");
5252
}

examples/Inkplate5/Projects/Crypto_Tracker_Example/Crypto_Tracker_Example.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
int timeZone = 2;
3131

3232
// Put in your ssid and password
33-
char ssid[] = "e-radionica.com";
34-
char pass[] = "croduino";
33+
char ssid[] = "";
34+
char pass[] = "";
3535

3636
// OPTIONAL:
3737
// change to a different currency

0 commit comments

Comments
 (0)