esp32_mqtt.ino 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. #include <Arduino.h>
  2. #include "WiFi.h"
  3. #include "PubSubClient.h"
  4. #include "Ticker.h"
  5. const char *ssid = "LH_TEST"; //wifi名
  6. const char *password = "lh326802247"; //wifi密码
  7. const char *mqtt_server = "183.230.40.39"; //onenet 的 IP地址
  8. #define mqtt_devid "914788329" //设备ID
  9. #define mqtt_pubid "499051" //产品ID
  10. #define mqtt_password "espdemo1" //鉴权信息
  11. /*
  12. Master-APIkey
  13. yOALPHrBqGL8Xr0xxosXpZB0q5I=
  14. access_key:
  15. yd+CP8y4H45pZjGj9NOh5Yp3JmiNKk7UEcSKhnDGL2I=
  16. */
  17. WiFiClient espClient; //创建一个WIFI连接客户端
  18. PubSubClient client(espClient); // 创建一个PubSub客户端, 传入创建的WIFI客户端
  19. char msg_buf[256]={0}; //发送信息缓冲区
  20. char dataTemplate[] = "{\"temp\":%d,\"hum\":%.2f}"; //信息模板
  21. char msgJson[75]={0}; //要发送的json格式的数据
  22. unsigned short json_len = 0; //json长度
  23. Ticker tim1; //定时器,用来循环上传数据
  24. //连接WIFI相关函数
  25. void setupWifi()
  26. {
  27. delay(10);
  28. Serial.println("连接WIFI");
  29. WiFi.begin(ssid, password);
  30. while (!WiFi.isConnected())
  31. {
  32. Serial.print(".");
  33. delay(500);
  34. }
  35. Serial.println("OK");
  36. Serial.println("Wifi连接成功");
  37. }
  38. //收到主题下发的回调, 注意这个回调要实现三个形参 1:topic 主题, 2: payload: 传递过来的信息 3: length: 长度
  39. void callback(char *topic, byte *payload, unsigned int length)
  40. {
  41. Serial.println("message rev:");
  42. Serial.println(topic);
  43. for (size_t i = 0; i < length; i++)
  44. {
  45. Serial.print((char)payload[i]);
  46. }
  47. Serial.println();
  48. }
  49. int temp=0;
  50. //向主题发送模拟的温湿度数据
  51. void sendTempAndHumi()
  52. {
  53. if (client.connected())
  54. {
  55. temp = (rand()%100);
  56. snprintf(msgJson, 40, dataTemplate, temp, 25.92); //将模拟温湿度数据套入dataTemplate模板中, 生成的字符串传给msgJson
  57. json_len = strlen(msgJson); //msgJson的长度
  58. msg_buf[0] = char(0x03); //要发送的数据必须按照ONENET的要求发送, 根据要求,数据第一位是3
  59. msg_buf[1] = char(json_len >> 8); //数据第二位是要发送的数据长度的高八位
  60. msg_buf[2] = char(json_len & 0xff); //数据第三位是要发送数据的长度的低八位
  61. memcpy(msg_buf + 3, msgJson, strlen(msgJson)); //从msg_buf的第四位开始,放入要传的数据msgJson
  62. msg_buf[3 + strlen(msgJson)] = 0; //添加一个0作为最后一位, 这样要发送的msg_buf准备好了
  63. Serial.print("public message:");
  64. Serial.println(msgJson);
  65. client.publish("$dp", (uint8_t *)msg_buf, 3 + strlen(msgJson)); //发送数据到主题$dp
  66. }
  67. }
  68. void send_mqtt_msgToOnenet(char *pdat,uint16_t len)
  69. {
  70. json_len = len; //msgJson的长度
  71. msg_buf[0] = char(0x03); //要发送的数据必须按照ONENET的要求发送, 根据要求,数据第一位是3
  72. msg_buf[1] = char(json_len >> 8); //数据第二位是要发送的数据长度的高八位
  73. msg_buf[2] = char(json_len & 0xff); //数据第三位是要发送数据的长度的低八位
  74. memcpy(msg_buf + 3, pdat, len); //从msg_buf的第四位开始,放入要传的数据msgJson
  75. msg_buf[3 + len] = 0; //添加一个0作为最后一位, 这样要发送的msg_buf准备好了
  76. Serial.print("public message:");
  77. Serial.println(pdat);
  78. client.publish("$dp", (uint8_t *)msg_buf, 3 + len); //发送数据到主题$dp
  79. }
  80. //重连函数, 如果客户端断线,可以通过此函数重连
  81. void clientReconnect()
  82. {
  83. while (!client.connected()) //再重连客户端
  84. {
  85. Serial.println("reconnect MQTT...");
  86. if (client.connect(mqtt_devid, mqtt_pubid, mqtt_password))
  87. {
  88. Serial.println("connected");
  89. }
  90. else
  91. {
  92. Serial.println("failed");
  93. Serial.println(client.state());
  94. Serial.println("try again in 5 sec");
  95. delay(5000);
  96. }
  97. }
  98. }
  99. #define Serial_RX_MAXSIZE 100
  100. unsigned char Serial_Buffer[Serial_RX_MAXSIZE]={0};//串口缓存区
  101. uint32_t timeTick = 0;
  102. unsigned int buffUartIndex = 0;
  103. unsigned long preUartTick = 0;
  104. char UsendFlag=0;
  105. //{"temp":84,"hum":25.92}
  106. void Usart_RxTask(void)//串口接收处理 空闲时表示接收完毕了
  107. {
  108. unsigned char i =0;
  109. if (Serial.available() > 0)//读取串口数据
  110. {
  111. uint8_t t = Serial.read();
  112. Serial_Buffer[buffUartIndex++] = t;
  113. preUartTick = millis();
  114. if (buffUartIndex >= Serial_RX_MAXSIZE - 1) {
  115. buffUartIndex = Serial_RX_MAXSIZE - 2;
  116. preUartTick = preUartTick - 10;
  117. }
  118. }
  119. if (buffUartIndex > 0 && (millis() - preUartTick >= 10))
  120. {
  121. Serial_Buffer[buffUartIndex] = 0x00;
  122. send_mqtt_msgToOnenet((char*)Serial_Buffer,buffUartIndex);
  123. // if(strstr((char*)&Serial_Buffer[0],"kg")!=NULL)
  124. // {
  125. // String tem;
  126. // for(int i=0;i<buffUartIndex;i++)
  127. // {
  128. // tem +=(char)Serial_Buffer[i];
  129. // }
  130. // data_str=tem;
  131. // }
  132. memset(Serial_Buffer,0,Serial_RX_MAXSIZE);
  133. buffUartIndex = 0;
  134. }
  135. }
  136. void setup()
  137. {
  138. Serial.begin(115200); //初始化串口
  139. delay(3000); //这个延时是为了让我打开串口助手
  140. setupWifi(); //调用函数连接WIFI
  141. client.setServer(mqtt_server, 6002); //设置客户端连接的服务器,连接Onenet服务器, 使用6002端口
  142. client.connect(mqtt_devid, mqtt_pubid, mqtt_password); //客户端连接到指定的产品的指定设备.同时输入鉴权信息
  143. client.setCallback(callback); //设置好客户端收到信息是的回调
  144. //tim1.attach(5, sendTempAndHumi); //定时每20秒调用一次发送数据函数sendTempAndHumi
  145. }
  146. void loop()
  147. {
  148. if (!WiFi.isConnected()) //先看WIFI是否还在连接
  149. {
  150. setupWifi();
  151. }
  152. if (!client.connected()) //如果客户端没连接ONENET, 重新连接
  153. {
  154. clientReconnect();
  155. }else
  156. {
  157. Usart_RxTask(); //解析串口数据 进行发送
  158. }
  159. client.loop(); //客户端循环检测
  160. }