1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-27 21:16:50 +03:00

Merge pull request #552 from Protoneer/patch-1

Changed Telnet Port to port 23
This commit is contained in:
Ivan Grokhotkov 2015-07-16 09:50:09 +03:00
commit 01361fc4c8

View File

@ -25,7 +25,7 @@
const char* ssid = "**********"; const char* ssid = "**********";
const char* password = "**********"; const char* password = "**********";
WiFiServer server(21); WiFiServer server(23);
WiFiClient serverClients[MAX_SRV_CLIENTS]; WiFiClient serverClients[MAX_SRV_CLIENTS];
void setup() { void setup() {
@ -45,7 +45,7 @@ void setup() {
Serial1.print("Ready! Use 'telnet "); Serial1.print("Ready! Use 'telnet ");
Serial1.print(WiFi.localIP()); Serial1.print(WiFi.localIP());
Serial1.println(" 21' to connect"); Serial1.println(" 23' to connect");
} }
void loop() { void loop() {