Skip to content

Commit 2f70c0c

Browse files
committed
Doc Fix
1 parent 35f8ab7 commit 2f70c0c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

examples/Commander_Shellminator_Advanced_Telnet_ESP32/Commander_Shellminator_Advanced_Telnet_ESP32.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
#define SERVER_PORT 23
2323

2424
// WiFi credentials.
25-
const char* ssid = "DIGI-b4vC";
26-
const char* password = "vyFJ6mU8";
25+
const char* ssid = "WiFI-SSID";
26+
const char* password = "WiFi-PASS";
2727

2828
// Create an instance of the server.
2929
// It will be available on port 23.

examples/Commander_Shellminator_Advanced_WebSocket_ESP32/Commander_Shellminator_Advanced_WebSocket_ESP32.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
#define WEBSERVER_PORT 80
3030

3131
// WiFi credentials.
32-
const char* ssid = "DIGI-b4vC";
33-
const char* password = "vyFJ6mU8";
32+
const char* ssid = "your-wifi-ssid";
33+
const char* password = "your-wifi-pass";
3434

3535
// Create websocket object.
3636
WebSocketsServer webSocket = WebSocketsServer( WEBSOCKET_PORT );

examples/Commander_simple_stream_pipe_ESP32/Commander_simple_stream_pipe_ESP32.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
#define SERVER_PORT 23
2323

2424
// WiFi credentials.
25-
const char* ssid = "DIGI-b4vC";
26-
const char* password = "vyFJ6mU8";
25+
const char* ssid = "your-wifi-ssid";
26+
const char* password = "your-wifi-pass";
2727

2828
// Create an instance of the server.
2929
// It will be available on port 23.

0 commit comments

Comments
 (0)