123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
-
- #include "includes.h"
- int UKI_UDP_In_Port = 9000;
- IPAddress UKI_UDP_Master_IP(192, 168, 0, 41);
- Ticker tkUKI;
- void setup ( void ) {
-
-
- Serial.begin(115200);
- Serial.println("Starting ESP8266");
- setupWifi();
-
-
-
-
-
- delay(200);
- Serial.println("Ready");
- Serial.print("IP address: ");
-
-
- UKI_UDP.begin(UKI_UDP_In_Port);
-
-
-
- }
- void loop ( void ) {
- StartConfigAP();
-
-
- }
|