u8 *esp8266_str_data(char *key, char *value) { u8 i; u8 *back; char temp[512]; char temp3[64]; // ³¤¶È char temp5[128]; // ·¢ËÍÖµ // Æ´½Ópost±¨ÎÄ strcpy(temp5, "{\"datastreams\":[{\"id\":\""); strcat(temp5, key); strcat(temp5, "\",\"datapoints\":[{\"value\":"); strcat(temp5, value); strcat(temp5, "}]}]}"); strcpy(temp3, "Content-Length:"); sprintf(temp, "%d", strlen(temp5) + 1); strcat(temp3, temp); strcpy(temp, ""); for (i = 0; i < 3; i++) { strcat(temp, str[i]); strcat(temp, "\r\n"); } strcat(temp, temp3); strcat(temp, "\r\n\r\n"); strcat(temp, temp5); strcat(temp, "\r\n"); back = esp8266_send_data((u8 *)temp, 50); // printf("server:%s\r\n", back); if (strstr((char *)back, "ERROR")) //·¢ËÍʧ°Ü, ÖØгõʼ»¯,·¢ËÍ { esp8266_send_cmd("AT+CIPMUX=0", "OK", 50); while (esp8266_send_cmd("AT+CIPSTART=\"TCP\",\"183.230.40.33\",80", "CONNECT", 100)); esp8266_send_cmd("AT+CIPMODE=1", "OK", 50); esp8266_send_cmd("AT+CIPSEND", "OK", 20); return esp8266_send_data((u8 *)temp, 50); } return back; }
时间: 2023-07-05 08:05:11 浏览: 165
代码esp8266
这是一段 ESP8266 模块的 C 语言代码,用于向一个远程服务器发送 POST 请求,将数据上传到云平台。其中,key 和 value 是上传的数据的键值对。temp5 是 POST 请求体的内容,temp3 是 POST 请求头的 Content-Length。代码还包括了处理发送失败的情况,会重连并重新发送请求。
阅读全文