1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- #include <ESP8266WiFi.h>
- //#include <WiFiClient.h>
- //#include <ESP8266WebServer.h>
- //web config portal
- #include <ESP8266WebServer.h>
- #include <DNSServer.h>
- #include <WiFiManager.h>
- #include <ArduinoJson.h> //https://github.com/bblanchon/ArduinoJson
- #include <Ticker.h>
- #include <EEPROM.h>
- #include <WiFiUdp.h>
- //OTA includes
- #include <ESP8266mDNS.h>
- //#include <WiFiUdp.h>
- #include <ArduinoOTA.h>
- //ESP8266WebServer server(80);
- WiFiUDP UKI_UDP;
- #include "leds.h" //config and functions relative to leds
- #include "helpers.h" //some helpers functions
- #include "eeprom.h" //config and functions relative to config permanent storage
- #include "ota.h" //config and functions relative to ota firmware updates
- #include "wifimgr.h" //config and functions relative to wifi and access point configuration
|