includes.h 849 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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 <Ticker.h>
  9. #include <EEPROM.h>
  10. #include <WiFiUdp.h>
  11. //OTA includes
  12. #include <ESP8266mDNS.h>
  13. //#include <WiFiUdp.h>
  14. #include <ArduinoOTA.h>
  15. ESP8266WebServer server(80);
  16. WiFiUDP UKI_UDP;
  17. #include "leds.h" //config and functions relative to leds
  18. #include "helpers.h" //some helpers functions
  19. #include "eeprom.h" //config and functions relative to config permanent storage
  20. #include "global.h" //config and functions relative to wifi and access point configuration
  21. //#include "web.h" //config and functions relative to configuration web server
  22. //#include "ota.h" //config and functions relative to ota firmware updates