now this shit works

Dependencies:   BufferedSerial

Dependents:   IoTWeatherStation

Fork of ESP8266NodeMCUInterface by ESP8266

Files at this revision

API Documentation at this revision

Comitter:
michaeljkoster
Date:
Tue Dec 30 00:16:21 2014 +0000
Parent:
24:03585a13ff3b
Child:
26:0d5bcb3903e2
Commit message:
Starting AT v0.2 support for ESP8266

Changed in this revision

ESP8266/ESP8266.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/ESP8266/ESP8266.cpp	Thu Dec 11 23:24:55 2014 +0000
+++ b/ESP8266/ESP8266.cpp	Tue Dec 30 00:16:21 2014 +0000
@@ -50,7 +50,7 @@
 {
     memset(&state, 0, sizeof(state));
 
-    // change all ' ' in '$' in the ssid and the passphrase
+/*    // change all ' ' in '$' in the ssid and the passphrase
     strcpy(this->ssid, ssid);
     for (int i = 0; i < strlen(ssid); i++) {
         if (this->ssid[i] == ' ')
@@ -61,6 +61,7 @@
         if (this->phrase[i] == ' ')
             this->phrase[i] = '$';
     }
+*/
 
     inst = this;
     attach_rx(false);