Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: ESP8266_MQTT_HelloWorld ESP8266_IFTTT_Test ECE_4180_Lab_4 websocketmbed ... more
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
- 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);

ESP8266-01