includes.h 724 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. int GSR_sensor;
  2. const int Blue_Led = 2;
  3. bool Blue_Led_State ;
  4. const int Red_Led = 0;
  5. bool Red_Led_State ;
  6. int loop_counter;
  7. #include <ESP8266WiFi.h>
  8. #include <WiFiClient.h>
  9. #include <ESP8266WebServer.h>
  10. #include <Ticker.h>
  11. #include <EEPROM.h>
  12. #include <WiFiUdp.h>
  13. #include "helpers.h"
  14. #include "global.h"
  15. //OTA includes
  16. #include <ESP8266mDNS.h>
  17. #include <WiFiUdp.h>
  18. #include <ArduinoOTA.h>
  19. WiFiUDP UKI_UDP;
  20. /*
  21. Include the HTML, STYLE and Script "Pages"
  22. */
  23. #include "Page_Root.h"
  24. #include "Page_Admin.h"
  25. #include "Page_Script.js.h"
  26. #include "Page_Style.css.h"
  27. #include "Page_NTPSettings.h"
  28. #include "Page_Information.h"
  29. #include "Page_General.h"
  30. #include "PAGE_NetworkConfiguration.h"
  31. #include "functions.h"