Init
Fork of ESP8266Interface by
Diff: ESP8266/ESP8266.cpp
- Revision:
- 48:03fd9333670d
- Parent:
- 47:1f4dd0e91837
--- 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);