当前位置:   article > 正文

VSCODE+Arduino生态快速入门ESP32(二)——微信小程序点灯(上)_esp32 arduino 微信小程序

esp32 arduino 微信小程序

VSCODE+Arduino生态快速入门ESP32(二)——微信小程序点灯(上)

概述:本文(上)包含的内容有:ESP32端连接WIFI并分配静态IP地址并通过UDP通信接受小程序传来的消息

1.ESP32端连接WIFI并分配静态IP地址

(1)WIFI配置函数

IPAddress staticIP(192, 168, 0, 113);
IPAddress gateway(192, 168, 0, 1);
IPAddress subnet(255, 255, 255, 0);
IPAddress dns(192, 168, 0,1);
WiFi.config(staticIP, gateway, subnet, dns, dns)
/***********************************
函数作用,配置WIFI的静态IP,掩码,子网和DNS
***********************************/
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

(2)WIFI模式设置

bool WiFiGenericClass::mode(wifi_mode_t m)
/*******************************************************    
参数:WIFI_AP或WIFI_STA都可,根据自己情况选择。
AP模式:接入点,可以理解为路由器或手机热点,可以让别的设备访问。
STA模式:可以理解为手机,只能接入其他AP设备,而不能被其他设备接入。
*******************************************************/
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

(3)开启WIFI

WiFi.begin(ssid, password);
  • 1

(4)几个获取wifi信息的函数

WiFi.isConnected()
/*******************************
函数作用:判断wifi是否连接,一般这么用:
  while (!WiFi.isConnected())
  {
    delay(500);
    Serial.print(".");
  }
*******************************/
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
WiFi.localIP()
/*******************************
函数作用:获取ESP32分配到的IP地址
*******************************/
  • 1
  • 2
  • 3
  • 4

之后就可以连接WIFI了,可以在路由器内网查到连接的设备。

2.ESP32UDP通信

(1)创建必要的变量

WiFiUDP Udp;                      //创建UDP对象
unsigned int localUdpPort = 2333; //本地端口号
char rxbuff;					  //数据缓冲区
  • 1
  • 2
  • 3

(2)开启监听端口

Udp.begin(localUdpPort); 		//启用UDP监听以接收数据
  • 1

(3)几个函数

int Udp.parsePacket()
/*****************************************
函数作用:返回获取到数据的长度(几个字节)
一般用法:在循环里判断缓存区是否有数据,然后开始解析
if(Udp.parsePacket){
	//your code
}
*****************************************/
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
Udp.read(buf, packetSize);
/*******************************
函数作用:读取UDP数据缓存区的数据
参数:保存数据的地址  读取数据的长度
*******************************/
  • 1
  • 2
  • 3
  • 4
  • 5
Udp.remoteIP() 与 Udp.remotePort()
/*******************************
函数作用:返回发送数据的IP地址和端口
*******************************/
  • 1
  • 2
  • 3
  • 4
Udp.print();  
/*******************************
函数作用:和printf类似,
*******************************/  
  • 1
  • 2
  • 3
  • 4
Udp.beginPacket(Udp.remoteIP(), Udp.remotePort());
/*******************************
函数作用:设置Udp要发送的IP地址和端口
参数:接收端的地址和端口
*******************************/  
  • 1
  • 2
  • 3
  • 4
  • 5
Udp.write((const uint8_t*)buf, packetSize)
/*******************************
函数作用:将数据写入数据缓存区
参数:数据地址和写入大小
*******************************/  
Udp.endPacket(); 
/*******************************
函数作用:将数据缓存区的数据打包发送
*******************************/  
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

3.点灯小Demo

#include <WiFi.h>
#include <WiFiUdp.h> //引用以使用UDP

const char *ssid = "****";
const char *password = "**********";

WiFiUDP Udp;                      //创建UDP对象
unsigned int localUdpPort = 2333; //本地端口号
IPAddress staticIP(192, 168, 0, 113);
IPAddress gateway(192, 168, 0, 1);
IPAddress subnet(255, 255, 255, 0);
IPAddress dns(192, 168, 0,1);


void setup()
{
  Serial.begin(115200);
  Serial.println();
  pinMode(2,OUTPUT);
  if (WiFi.config(staticIP, gateway, subnet, dns, dns) == false) 
  {
    Serial.println("Configuration failed.");
  }
  WiFi.mode(WIFI_STA);
  WiFi.begin(ssid, password);
  while (!WiFi.isConnected())
  {
    delay(500);
    Serial.print(".");
  }
  Serial.println("Connected");
  Serial.print("IP Address:");
  Serial.println(WiFi.localIP());

  Udp.begin(localUdpPort); //启用UDP监听以接收数据
}

void loop()
{
  char rxbuff;
  int packetSize = Udp.parsePacket();
  if (packetSize)    
  {
    char buf[packetSize];
    Udp.read(buf, packetSize);
    rxbuff=buf[0];
    if(rxbuff=='1')
    {
        digitalWrite(2,HIGH);
    }
    if(rxbuff=='2')
    {
        digitalWrite(2,LOW);
    }
    if (packetSize > 0)  //为了避免获取的数据后面乱码做的判断
    {
      buf[packetSize] = '\0';
    }
    Serial.println();
    Serial.print("Received: ");
    Serial.println(buf);
    Serial.print("From IP: ");
    Serial.println(Udp.remoteIP());
    Serial.print("From Port: ");
    Serial.println(Udp.remotePort());
    Udp.beginPacket(Udp.remoteIP(), Udp.remotePort());
    Udp.print("Received: ");  
    Udp.write((const uint8_t*)buf, packetSize); 
    Udp.endPacket();        
  }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71

可以使用网络助手调试,向192.168.0.113 端口2333发送数据,若数据为1,则灯亮,若数据为2则灯灭

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/677999
推荐阅读
相关标签
  

闽ICP备14008679号