Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ESP8266WiFi softAP and begin #5295

Merged
merged 3 commits into from
Dec 23, 2018
Merged

ESP8266WiFi softAP and begin #5295

merged 3 commits into from
Dec 23, 2018

Conversation

dav1901
Copy link
Contributor

@dav1901 dav1901 commented Oct 30, 2018

Added support for String arguments to begin and softAP methods in ESP8266WiFi library as suggested in #3213 issue.

Copy link
Collaborator

@d-a-v d-a-v left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For the reader, because of the newline difference, the diff for ESP8266WiFiAP.cpp is

@@ -185,6 +185,9 @@
     return ret;
 }
 
+bool ESP8266WiFiAPClass::softAP(const String& ssid, const String& passphrase, int channel, int ssid_hidden, int max_connection) {
+    return softAP(ssid.c_str(), passphrase.c_str(), channel, ssid_hidden, max_connection);
+}

@dav1901 dav1901 force-pushed the issues branch 2 times, most recently from c55c621 to 42d6f24 Compare December 5, 2018 15:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants