1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- int GSR_sensor;
- const int Blue_Led = 2;
- bool Blue_Led_State ;
- const int Red_Led = 0;
- bool Red_Led_State ;
- int loop_counter;
- #include <ESP8266WiFi.h>
- #include <WiFiClient.h>
- #include <ESP8266WebServer.h>
- #include <Ticker.h>
- #include <EEPROM.h>
- #include <WiFiUdp.h>
- #include "helpers.h"
- #include "global.h"
- //OTA includes
- #include <ESP8266mDNS.h>
- #include <WiFiUdp.h>
- #include <ArduinoOTA.h>
- WiFiUDP UKI_UDP;
- /*
- Include the HTML, STYLE and Script "Pages"
- */
- #include "Page_Root.h"
- #include "Page_Admin.h"
- #include "Page_Script.js.h"
- #include "Page_Style.css.h"
- #include "Page_NTPSettings.h"
- #include "Page_Information.h"
- #include "Page_General.h"
- #include "PAGE_NetworkConfiguration.h"
- #include "functions.h"
|