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.

Branch:
api-changes
Revision:
32:28a909a3748e
Parent:
30:f80540b6e2db
Child:
33:b80621db4a68
--- a/main.cpp	Tue Feb 23 00:01:04 2016 -0600
+++ b/main.cpp	Tue Feb 23 01:35:24 2016 -0600
@@ -18,7 +18,7 @@
 #include "ESP8266Interface.h"
 #include "TCPSocket.h"
 
-DigitalOut myled(LED1);
+DigitalOut myled(LED_GREEN);
 void flash(){ myled = !myled; }
 
 ESP8266Interface wifi(D1, D0);
@@ -30,7 +30,7 @@
     t.attach(flash, 0.4f);
     printf("NetworkSocketAPI Example\r\n");
 
-    wifi.connect("WifiDemo", "");
+    wifi.connect("Sniffer", "Sandcastle");
     
     const char *ip = wifi.getIPAddress();
     const char *mac = wifi.getMACAddress();