当前位置:   article > 正文

【物联网】ESP32 + onenet + 按钮or模拟信号传感器,使用HTTP协议上传数据_esp32通过 http协议上传 onenet

esp32通过 http协议上传 onenet

最近在学习物联网的知识,之前总是在本地做一些传感器使用,感觉很无聊,后期想利用传感器和微信小程序进行数据实时观看,所以最近学习一下物联网知识。

本次物联网平台使用的是中国移动的onenet平台,使用的是新版本(旧版本的多协议接入新用户关闭了),刚刚学会怎么使用HTTP协议传输数据,现在将代码展示出来。

#include <Arduino.h>
#include<WiFi.h>
#include<HTTPClient.h>

const int button = 34;

const char* ssid = "xxxxxx";  //wifi名称
const char* passwd = "xxxxxxx";  //wifi密码
const char* token = "xxxx"; //token是onenet新平台的鉴权协议,需要使用token计算机生成。



HTTPClient http;


void setup() {

  pinMode(34, INPUT);

  Serial.begin(115200);
  WiFi.begin(ssid, passwd);
  while(WiFi.status() != WL_CONNECTED){
    delay(2000);
    Serial.println("Connecting to WiFi");
  }
  Serial.println("Connected to WiFi");
  http.begin("https://open.iot.10086.cn/fuse/http/device/thing/property/post?topic=$sys/w3j5oq7Z7c/123123/thing/property/post&protocol=HTTP");
  http.addHeader("token", token);
  http.addHeader("Content-Type", "application/json");

  //int httpResponseCode = http.POST(data);

}
void loop() {



  int button_res = digitalRead(34);

  if (button_res == HIGH){
    Serial.println("button down");

    String data= "{\"id\":\"123\",\"version\":\"1.0\",\"params\":{\"abc\":{\"value\":1},\"light\":{\"value\":1}}}";

    int httpResponseCode = http.POST(data);
    Serial.println("done");
    if (httpResponseCode > 0){
      Serial.print("HTTP Response code:");
      Serial.println(httpResponseCode);
      } 
    else {
      Serial.print("Error code:");
      Serial.println(httpResponseCode);
      }

    http.end();
    delay(1000);
  }
}

  • 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

程序运行结果是当按下按钮时,向onenet平台传输数据,数据内容是value后面的值,如果想要实时的传输传感器数据,需要读取接口的模拟值,并格式化字符串结构,把上传值改掉。

注意,使用http协议的post请求上传数据,onenet平台是5s刷新一次,不能达到实时刷新。

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

闽ICP备14008679号