now this shit works

Dependencies:   BufferedSerial

Dependents:   IoTWeatherStation

Fork of ESP8266NodeMCUInterface by ESP8266

Revision:
16:3f0efaa57a12
Parent:
13:41098c907200
Child:
17:d11fa4c3ac65
--- a/Socket/Endpoint.cpp	Sun Nov 30 21:56:03 2014 +0000
+++ b/Socket/Endpoint.cpp	Mon Dec 01 06:22:00 2014 +0000
@@ -38,6 +38,8 @@
     //Resolve DNS address or populate hard-coded IP address
     ESP8266->gethostbyname(host, _ipAddress);
     _port = port;
+    //Start the UDP Endpoint 
+    ESP8266->startUDP(_ipAddress,_port);
     return 0;
 }