Example program for the ESP8266Interface running Espressif Firmware

Dependencies:   ESP8266Interface NetworkSocketAPI mbed

Note

This example code assumes your ESP8266 is running the Espressif Firmware. For instructions on how to update your ESP8266 to use the correct firmware see the Firmware Update Wiki Page.

This program demonstrates how to open, close, send and recv from the ESP8266 using the Network Socket API.

Revision:
4:cb8a17dd6746
Parent:
2:7283ce112304
Child:
6:751245e265f6
--- a/main.cpp	Thu May 28 16:48:17 2015 +0000
+++ b/main.cpp	Thu May 28 20:01:52 2015 +0000
@@ -24,28 +24,30 @@
 // or
 //NetworkInterface *wifi = new WiFiInterface;
 
-TCPSocket tcp(wifi.getInstance());
+//TCPSocket tcp(wifi.getInstance());
 // or
 //SocketInterface tcp = new TCPSocket(wifi->getInstance();
 
-UDPSocket udp(wifi.getInstance());
+//UDPSocket udp(wifi.getInstance());
 // or
 //SocketInterface udp = new UDPSocket(wifi->getInstance();
 
 int main()
 {
     puts("NetworkSocketAPI Example");
-    
+
     wifi.init();
-    wifi.connect("apname", "phrase", WPA2);
+    wifi.connect("apname", "phrase", NetworkInterface::NI_WPA2);
     
+    printf("Wifi is %s\n", (wifi.isConnected() > 0) ? "Connected" : "Disconnected");
+
     printf("IP: %s\n", wifi.getIPAddress());
     printf("Gateway: %s\n", wifi.getGateway());
     printf("Mask: %s\n", wifi.getNetworkMask());
     printf("MAC: %s\n", wifi.getMACAddress());
 
     wifi.disconnect();
-    
+
     while(1) {
         myled = !myled;
     }