WiFi-ESP8266入门开发(四)-设置软热点

注:对于ESP8266开源技术感兴趣的可以加群,我们一起探索交流学习,群号:579932824。群名:ESP8266开源技术交流群。

将ESP8266设置为一个热点,可供其他设备连接并交换数据,主要使用的函数:WiFi.softAP(ssid, password, channel, hidden)。

参数说明:

ssid:Wifi热点名称,支持最大63个英文字符;

password:密码设置,可选参数,也就是可以没有密码,如果设定为WPA2-PSK;

channel:信道设置,可选参数,1-13,没有填写则默认为1;

hidden:是否隐藏SSID,可选参数,如果设置为true则隐藏。

 

ESP8266开启的默认IP地址为192.168.4.1,可以使用softAPConfig (local_ip, gateway, subnet) 函数进行修改。

参数说明:

local_ip:软热点的地址;

gateway:网关地址;

subnet:子网掩码。

 

程序流程:

1、连接NodeMCU板子到USB接口,打开Arduino IDE编辑器界面,选择好开发板型号和串口号。

2、在Arduino IDE的编辑器界面,开始部分添加头文件。

#include  

3、声明各IP地址。

IPAddress local_IP(192,168,4,4);  
IPAddress gateway(192,168,4,1);  
IPAddress subnet(255,255,255,0); 

4、配置软AP参数。

WiFi.softAPConfig(local_IP, gateway, subnet);

5、启动AP模式。

WiFi.softAP("SoftAP001","123456789");

6、获取IP地址。

Serial.print("Soft-AP IP address = ");  
Serial.println(WiFi.softAPIP());

下载完成后,在手机或笔记本上Wifi可以搜到设置的AP。

整体代码如下:

#include   
IPAddress local_IP(192, 168, 4, 4);  
IPAddress gateway(192, 168, 4, 1);  
IPAddress subnet(255, 255, 255, 0);  
void setup() {  
  // put your setup code here, to run once:  
  Serial.begin(115200);  
  WiFi.softAPConfig(local_IP, gateway, subnet);  
  WiFi.softAP("SoftAP001", "123456789");  
  Serial.print("Soft-AP IP address = ");  
  Serial.println(WiFi.softAPIP());  
  
}  
  
void loop() {  
  // put your main code here, to run repeatedly:  
  
}

 

你可能感兴趣的:(ESP8266,Arduino,ESP8266入门到实战开发)