mirror of
https://github.com/esp8266/Arduino.git
synced 2025-07-30 16:24:09 +03:00
improve error handling and return values
This commit is contained in:
@ -36,9 +36,9 @@ class ESP8266WiFiAPClass {
|
||||
|
||||
public:
|
||||
|
||||
void softAP(const char* ssid, const char* passphrase = NULL, int channel = 1, int ssid_hidden = 0);
|
||||
void softAPConfig(IPAddress local_ip, IPAddress gateway, IPAddress subnet);
|
||||
int softAPdisconnect(bool wifioff = false);
|
||||
bool softAP(const char* ssid, const char* passphrase = NULL, int channel = 1, int ssid_hidden = 0);
|
||||
bool softAPConfig(IPAddress local_ip, IPAddress gateway, IPAddress subnet);
|
||||
bool softAPdisconnect(bool wifioff = false);
|
||||
|
||||
IPAddress softAPIP();
|
||||
|
||||
|
Reference in New Issue
Block a user