源代码下载地址:
https://download.csdn.net/download/qq_31806069/11166723
效果:
建议先看这篇,如何搭建MQTT服务器:
https://www.jianshu.com/p/485d04f8e96e
拿到代码后要做的事情:
1、 先修改WIFI账号和密码(和你的WIFI账号密码一样)
define GATEWAY_SSID "RI-PIPE-3-2G" //账号
define GATEWAY_PAS "hyk11611344" //密码
2、 知道你自己的电脑IP,将.hots修改成和你一样的Ip
static void mqtt_app_start(void)
{
esp_mqtt_client_config_t mqtt_cfg = {
.host="192.168.20.96",
.event_handle = mqtt_event_handler,
.port=1883,
// .user_context = (void *)your_context
};