ESP8266 Socket Library. AT Thinker firmware.

Dependents:   ESP8266_MQTT_HelloWorld ESP8266_IFTTT_Test ECE_4180_Lab_4 websocketmbed ... more

Fork of ESP8266Interface by ESP8266

This repository has been superceded

This project has moved to https://developer.mbed.org/teams/ESP8266/code/esp8266-driver/

This library works with the AT Thinker firmware.

Note

This library is currently in Beta. It is not feature complete and has some bugs, proceed with caution! Fixes and patches are welcome and appreciated!

Currently the ESP8266Interface Library has the following Abilities:

Working

  • TCP Client
  • UDP Client
  • Transparent mode (single connection of 1 type at a time)
  • Station Mode (connects to AP)

To be implemented

  • TCP Server
  • UDP Server
  • Multi Connection Mode (able to have up to 5 sockets at a time)
  • AP Mode (Make ESP Chip act like access point)
  • DNS Support (currently websites must be looked up by IP)
  • Error Recovery

Nice but not necessary

  • colorized text for ESP AT Commands in Command line (easier to differentiate from other text)
Revision:
12:c5f0eac67a8a
Parent:
11:fc3d86645d23
--- a/Wifly/Wifly.cpp	Tue Jun 03 18:43:14 2014 +0000
+++ b/Wifly/Wifly.cpp	Wed Oct 08 19:57:58 2014 +0000
@@ -40,6 +40,8 @@
 
 #define MAX_TRY_JOIN 3
 
+extern Serial pc;
+
 Wifly * Wifly::inst;
 
 Wifly::Wifly(   PinName tx, PinName rx, PinName _reset, PinName tcp_status, const char * ssid, const char * phrase, Security sec):
@@ -72,65 +74,65 @@
     for (int i= 0; i < MAX_TRY_JOIN; i++) {
 
         // no auto join
-        if (!sendCommand("set w j 0\r", "AOK"))
+        if (!sendCommand("set w j 0\r\n", "AOK"))
             continue;
 
         //no echo
-        if (!sendCommand("set u m 1\r", "AOK"))
+        if (!sendCommand("set u m 1\r\n", "AOK"))
             continue;
 
         // set time
-        if (!sendCommand("set c t 30\r", "AOK"))
+        if (!sendCommand("set c t 30\r\n", "AOK"))
             continue;
 
         // set size
-        if (!sendCommand("set c s 1024\r", "AOK"))
+        if (!sendCommand("set c s 1024\r\n", "AOK"))
             continue;
 
         // red led on when tcp connection active
-        if (!sendCommand("set s i 0x40\r", "AOK"))
+        if (!sendCommand("set s i 0x40\r\n", "AOK"))
             continue;
 
         // no string sent to the tcp client
-        if (!sendCommand("set c r 0\r", "AOK"))
+        if (!sendCommand("set c r 0\r\n", "AOK"))
             continue;
 
         // tcp protocol
-        if (!sendCommand("set i p 2\r", "AOK"))
+        if (!sendCommand("set i p 2\r\n", "AOK"))
             continue;
 
         // tcp retry
-        if (!sendCommand("set i f 0x7\r", "AOK"))
+        if (!sendCommand("set i f 0x7\r\n", "AOK"))
             continue;
             
         // set dns server
-        if (!sendCommand("set d n rn.microchip.com\r", "AOK"))
+        if (!sendCommand("set d n rn.microchip.com\r\n", "AOK"))
             continue;
 
         //dhcp
-        sprintf(cmd, "set i d %d\r", (state.dhcp) ? 1 : 0);
+        sprintf(cmd, "set i d %d\r\n", (state.dhcp) ? 1 : 0);
         if (!sendCommand(cmd, "AOK"))
             continue;
 
         // ssid
-        sprintf(cmd, "set w s %s\r", ssid);
+        sprintf(cmd, "set w s %s\r\n", ssid);
         if (!sendCommand(cmd, "AOK", NULL, 1000))
             continue;
 
         //auth
-        sprintf(cmd, "set w a %d\r", state.sec);
+        sprintf(cmd, "set w a %d\r\n", state.sec);
         if (!sendCommand(cmd, "AOK"))
             continue;
 
         // if no dhcp, set ip, netmask and gateway
         if (!state.dhcp) {
-            DBG("not dhcp\r");
+            DBG("not dhcp\r\n");
 
             sprintf(cmd, "set i a %s\r\n", ip);
             if (!sendCommand(cmd, "AOK"))
                 continue;
 
-            sprintf(cmd, "set i n %s\r", netmask);
+            sprintf(cmd, "set i n %s\r\n", netmask);
             if (!sendCommand(cmd, "AOK"))
                 continue;
 
@@ -142,16 +144,16 @@
         //key step
         if (state.sec != NONE) {
             if (state.sec == WPA)
-                sprintf(cmd, "set w p %s\r", phrase);
+                sprintf(cmd, "set w p %s\r\n", phrase);
             else if (state.sec == WEP_128)
-                sprintf(cmd, "set w k %s\r", phrase);
+                sprintf(cmd, "set w k %s\r\n", phrase);
 
             if (!sendCommand(cmd, "AOK", NULL, 1000))
                 continue;
         }
 
         //join the network
-        sprintf(cmd, "join\r");
+        sprintf(cmd, "join\r\n");
         if (!sendCommand(cmd, "Associated", NULL, 3000))
             continue;
         
@@ -159,11 +161,11 @@
             continue;
 
         if (state.dhcp) {
-            if (!sendCommand("get i\r", "DHCP=ON", NULL, 3000))
+            if (!sendCommand("get i\r\n", "DHCP=ON", NULL, 3000))
                 continue;
         }
 
-        if (!sendCommand("save\r", "Stor"))
+        if (!sendCommand("save\r\n", "Stor"))
             continue;
 
         exit();
@@ -180,21 +182,22 @@
 {
     // use udp auto pairing
     char cmd[20];
-    sprintf(cmd, "set i p %d\r", p);
+    sprintf(cmd, "set i p %d\r\n", p);
     if (!sendCommand(cmd, "AOK"))
         return false;
 
     switch(p) {
         case TCP:
             // set ip flags: tcp retry enabled
-            if (!sendCommand("set i f 0x07\r", "AOK"))
+            if (!sendCommand("set i f 0x07\r\n", "AOK"))
                 return false;
             break;
         case UDP:
             // set ip flags: udp auto pairing enabled
-            if (!sendCommand("set i h 0.0.0.0\r", "AOK"))
+            if (!sendCommand("set i h 0.0.0.0\r\n", "AOK"))
                 return false;
-            if (!sendCommand("set i f 0x40\r", "AOK"))
+            if (!sendCommand("set i f 0x40\r\n", "AOK"))
+//            if (!sendCommand("set i f 0x00\r\n", "AOK")) // TEST turn off autopairing
                 return false;
             break;
     }
@@ -221,7 +224,7 @@
     char cmd[20];
 
     // try to open
-    sprintf(cmd, "open %s %d\r", host, port);
+    sprintf(cmd, "open %s %d\r\n", host, port);
     if (sendCommand(cmd, "OPEN", NULL, 10000)) {
         state.tcp = true;
         state.cmd_mode = false;
@@ -233,7 +236,7 @@
         if (strstr(rcv, "OPEN") == NULL) {
             if (strstr(rcv, "Connected") != NULL) {
                 wait(0.25);
-                if (!sendCommand("close\r", "CLOS"))
+                if (!sendCommand("close\r\n", "CLOS"))
                     return false;
                 wait(0.25);
                 if (!sendCommand(cmd, "OPEN", NULL, 10000))
@@ -274,7 +277,7 @@
     // dns needed
     else {
         nb_digits = 0;
-        sprintf(cmd, "lookup %s\r", host);
+        sprintf(cmd, "lookup %s\r\n", host);
         if (!sendCommand(cmd, NULL, rcv))
             return false;
 
@@ -363,7 +366,7 @@
 bool Wifly::reboot()
 {
     // if already in cmd mode, return
-    if (!sendCommand("reboot\r"))
+    if (!sendCommand("reboot\r\n"))
         return false;
     
     wait(0.3);
@@ -379,7 +382,7 @@
         return true;
 
     wait(0.25);
-    if (!sendCommand("close\r", "CLOS"))
+    if (!sendCommand("close\r\n", "CLOS"))
         return false;
     exit();
 
@@ -400,7 +403,7 @@
     flush();
     if (!state.cmd_mode)
         return true;
-    if (!sendCommand("exit\r", "EXIT"))
+    if (!sendCommand("exit\r\n", "EXIT"))
         return false;
     state.cmd_mode = false;
     flush();