1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-16 11:21:18 +03:00

Add support for String args to softAP and begin (#5295)

This commit is contained in:
dav1901
2018-12-23 03:48:31 +02:00
committed by Develo
parent 228ad7ed75
commit dd6333ee8b
4 changed files with 9 additions and 0 deletions

View File

@ -37,6 +37,7 @@ class ESP8266WiFiAPClass {
public:
bool softAP(const char* ssid, const char* passphrase = NULL, int channel = 1, int ssid_hidden = 0, int max_connection = 4);
bool softAP(const String& ssid,const String& passphrase = emptyString,int channel = 1,int ssid_hidden = 0,int max_connection = 4);
bool softAPConfig(IPAddress local_ip, IPAddress gateway, IPAddress subnet);
bool softAPdisconnect(bool wifioff = false);