123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
-
- #include "includes.h"
- int UKI_UDP_In_Port = 9000;
- IPAddress UKI_UDP_Master_IP(192, 168, 0, 41);
- Ticker tkUKI;
- int GSR_sensor;
- void setup ( void ) {
-
- EEPROM.begin(512);
- Serial.begin(115200);
- Serial.println("Starting ESP8266");
- setupLeds();
- setupWifi();
- setupOTA();
-
- delay(200);
- Serial.println("Ready");
- Serial.print("IP address: ");
- Serial.println(WiFi.localIP());
-
- UKI_UDP.begin(UKI_UDP_In_Port);
- blueLedState(-1, 500);
-
-
- }
- void loop ( void ) {
-
-
- }
|