Skip to content

Instantly share code, notes, and snippets.

@li2hub
Created October 17, 2018 08:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save li2hub/675e2106e2ecfdc3bf614a57d3e87ee0 to your computer and use it in GitHub Desktop.
Save li2hub/675e2106e2ecfdc3bf614a57d3e87ee0 to your computer and use it in GitHub Desktop.
#include <ESP8266WiFi.h>
const char* ssid = "your-ssid";
const char* password = "your-password";
void setup() {
Serial.begin(115200);
delay(10);
Serial.println();
Serial.print("Connecting to ");
Serial.println(ssid);
WiFi.mode(WIFI_STA);
WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.print(".");
}
Serial.println("");
Serial.println("WiFi connected");
Serial.println("IP address: ");
Serial.println(WiFi.localIP());
}
void loop() {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment