blabla
Fork of ESP8266Interface by
Revision 48:03fd9333670d, committed 2015-06-10
- Comitter:
- sarahmarshy
- Date:
- Wed Jun 10 15:47:33 2015 +0000
- Parent:
- 47:1f4dd0e91837
- Child:
- 49:c5c9899c0255
- Commit message:
- ESP8266 was changing ssid spaces to "$". Unecessary. Removed this feature.
Changed in this revision
ESP8266/ESP8266.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/ESP8266/ESP8266.cpp Mon Jun 08 21:32:12 2015 +0000 +++ b/ESP8266/ESP8266.cpp Wed Jun 10 15:47:33 2015 +0000 @@ -51,19 +51,9 @@ INFO("Initializing ESP8266 object"); memset(&state, 0, sizeof(state)); - // 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] == ' ') - this->ssid[i] = '$'; - } - strcpy(this->phrase, phrase); - for (int i = 0; i < strlen(phrase); i++) { - if (this->phrase[i] == ' ') - this->phrase[i] = '$'; - } - inst = this; attach_rx(false);