diff --git a/README.md b/README.md index 71d4a5e..40d4719 100644 --- a/README.md +++ b/README.md @@ -23,11 +23,11 @@ The sketch uses several libraries. Some will probably already be installed in yo - Adafruit_GFX library (install from the library manager) - Adafruit_BusIO library (install from the library manager) - Radiolib library (install from the library manager) -- TinyGPSPlus library ((install from the library manager) -- ESPAsyncWebServer library (download: https://github.com/me-no-dev/ESPAsyncWebServer/archive/master.zip ) -- AsyncTCP library (download: https://github.com/me-no-dev/AsyncTCP/archive/master.zip ) +- TinyGPSPlus library (install from the library manager) +- ESPAsyncWebServer library (install from the library manager or download: https://github.com/me-no-dev/ESPAsyncWebServer/archive/master.zip) +- AsyncTCP library (install from the library manager or download: https://github.com/me-no-dev/AsyncTCP/archive/master.zip) -Install the last two libraries from the IDE menu: Sketch -> Include Library -> Add .ZIP library +If not using the library manager then install the last two libraries from the IDE menu: Sketch -> Include Library -> Add .ZIP library # settings.h You will need to change the values in settings.h before you can use the sketch. diff --git a/webserver.ino b/webserver.ino index 5c46b16..06a0ebf 100644 --- a/webserver.ino +++ b/webserver.ino @@ -1,7 +1,7 @@ /************************************************************************************ * All webserver related stuff ************************************************************************************/ -#include +#include // Changed from ESPAsyncWebServer.h to use lib mgr version. // webserver on standard port 80. But can be any port. AsyncWebServer server(80);