Compare commits

...

No commits in common. "2dee4781fc9cfcf03fd7c15261adc2b27f657c5f" and "df70f8bd0577818fe2865128117ab0210b084801" have entirely different histories.

1 changed files with 11 additions and 0 deletions

View File

@ -5,6 +5,17 @@
#include <FS.h>
void setup_mode() {
WiFi.softAP(ssid, password); // Start the access point
Serial.print("Access Point \"");
Serial.print(ssid);
Serial.println("\" started");
Serial.print("IP address:\t");
Serial.println(
WiFi.softAPIP()); // Send the IP address of the ESP8266 to the computer
}
void connect() {
WiFi.mode(WIFI_STA);
WiFi.hostname("flash-httpd");
WiFi.begin("WEMOS", "SNAPWIRE");