1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-15 00:02:49 +03:00

Add method to configure softAP IP address

fix #76
This commit is contained in:
Ivan Grokhotkov
2015-04-21 20:52:02 +08:00
parent a5662ff0a9
commit 4cc06c2100
2 changed files with 18 additions and 0 deletions

View File

@ -82,6 +82,14 @@ public:
*/
void config(IPAddress local_ip, IPAddress gateway, IPAddress subnet);
/* Configure access point
*
* param local_ip: access point IP
* param gateway: gateway IP
* param subnet: subnet mask
*/
void softAPConfig(IPAddress local_ip, IPAddress gateway, IPAddress subnet);
/*
* Disconnect from the network
*