diff --git a/README.md b/README.md index d9cbd97..cd23711 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ ### Steps to run it -##### create "template/wifi_credentials.h" +##### create "include/wifi_credentials.h" ```cpp #ifndef __WIFI_CREDENTIALS_H diff --git a/platformio.ini b/platformio.ini index a20109c..fdbb373 100644 --- a/platformio.ini +++ b/platformio.ini @@ -12,6 +12,7 @@ platform = espressif8266 board = esp01_1m framework = arduino +monitor_speed = 115200 ; stuff for OTA ; https://docs.platformio.org/en/latest/platforms/espressif8266.html#over-the-air-ota-update diff --git a/src/main.cpp b/src/main.cpp index d036268..6fd7f38 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -67,7 +67,6 @@ void handleNotFound() { } - void setup_webserver() { pinMode(led, OUTPUT); digitalWrite(led, 0); @@ -164,7 +163,6 @@ void setup() { void loop() { - Serial.println(""); ArduinoOTA.handle(); server.handleClient();