includes.h 845 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. #include <ESP8266WiFi.h>
  2. //#include <WiFiClient.h>
  3. //#include <ESP8266WebServer.h>
  4. //web config portal
  5. #include <ESP8266WebServer.h>
  6. #include <DNSServer.h>
  7. #include <WiFiManager.h>
  8. #include <ArduinoJson.h> //https://github.com/bblanchon/ArduinoJson
  9. #include <Ticker.h>
  10. #include <EEPROM.h>
  11. #include <WiFiUdp.h>
  12. //OTA includes
  13. #include <ESP8266mDNS.h>
  14. //#include <WiFiUdp.h>
  15. #include <ArduinoOTA.h>
  16. //ESP8266WebServer server(80);
  17. WiFiUDP UKI_UDP;
  18. #include "leds.h" //config and functions relative to leds
  19. #include "helpers.h" //some helpers functions
  20. #include "eeprom.h" //config and functions relative to config permanent storage
  21. #include "ota.h" //config and functions relative to ota firmware updates
  22. #include "wifimgr.h" //config and functions relative to wifi and access point configuration