Skip to content
Permalink
aefe944a97
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
27 lines (22 sloc) 573 Bytes
#include <Arduino.h>
#include <ESP8266WiFi.h>
const char* ssid = "MEWS-WB3";
const char* password = "clutter-defeat-writhe";
void setup() {
// baudrate for serial reading
Serial.begin(9600);
delay(1000);
Serial.println("test");
Serial.println();
// Open wifi connection to home wifi
WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.println(".");
}
Serial.println("");
Serial.println("Wifi connected");
}
void loop() {
// put your main code here, to run repeatedly:
}