Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

examples code cleanup #5290

Merged
merged 6 commits into from
Oct 29, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion libraries/ESP8266WiFi/examples/WiFiClient/WiFiClient.ino
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ const uint16_t port = 17;

void setup() {
Serial.begin(115200);
delay(10);

// We start by connecting to a WiFi network

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ ESP8266WiFiMulti WiFiMulti;

void setup() {
Serial.begin(115200);
delay(10);

// We start by connecting to a WiFi network
WiFi.mode(WIFI_STA);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,6 @@ WiFiServerSecure server(443);

void setup() {
Serial.begin(115200);
delay(10);

// prepare GPIO2
pinMode(2, OUTPUT);
Expand Down
1 change: 0 additions & 1 deletion libraries/ESP8266WiFi/examples/WiFiMulti/WiFiMulti.ino
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ ESP8266WiFiMulti wifiMulti;

void setup() {
Serial.begin(115200);
delay(10);

WiFi.mode(WIFI_STA);
wifiMulti.addAP("ssid_from_AP_1", "your_password_for_AP_1");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ WiFiServer server(80);

void setup() {
Serial.begin(115200);
delay(10);

// prepare GPIO2
pinMode(2, OUTPUT);
Expand Down