1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- #include "includes.h"
- void setup ( void ) {
-
-
- Serial.begin(115200);
- Serial.println("Starting ESP8266");
- setupLeds();
-
- setupWifi();
- setupUDP() ;
-
-
-
- blueLedState(-1, 500);
-
-
- }
- void loop ( void ) {
-
- StartConfigAP();
- UDP_send_receive();
-
- }
|