YFROBOT创客社区

标题: ESP8266 core for Arduino应用:远程监控温湿度,基于yeelink物联网开发平台 [打印本页]

作者: AllBlue    时间: 2016-4-29 13:18
标题: ESP8266 core for Arduino应用:远程监控温湿度,基于yeelink物联网开发平台
YEELINK 云平台已失联,帖子仅供参考学习,请谨慎阅读!!

DHT11 大家都是用过,本文将使用DHT11及ESP8266(虽然模块使用的nodemcu,但使用arduino语言开发,未使用LUA语言及nodemcu固件)监控当前环境温湿度并上传云端,实现远程监控温湿度功能!
云端我们基于yeelink免费平台,我们需要再yeelink平台注册账号(不介绍,看此帖)!
我已注册账号,直接添加DHT11传感器就可以,下面是具体步骤:
#添加传感器值,温度值及湿度值:
[attach]1379[/attach]

[attach]1378[/attach]
#添加完传感器后,返回设备管理界面可以得到传感器ID:
[attach]1380[/attach]

#电路图,DHT11数据引脚连接到D4(GPIO2):
[attach]1549[/attach]


程序:
[C] 纯文本查看 复制代码

/*
   ESP8266 TCPcleint 连接到NET WORK ,
   读取DHT11数据并上传云端,用手机或电脑可监控设备温湿度,实现远程监控实时温湿度!
   基于yeelink 免费物联平台 www.yeelink.net
   by yfrobot
   http://www.yfrobot.com
*/

#include <ESP8266WiFi.h>
#include "DHT.h"

#define DHTPIN 4                          // what digital pin we're connected to
#define DHTTYPE DHT11                     // DHT 11 -- Uncomment whatever type you're using!

const char* ssid     = "YFROBOT";         // XXXXXX -- 使用时请修改为当前你的 wifi ssid
const char* password = "xxxxx";     // XXXXXX -- 使用时请修改为当前你的 wifi 密码
const char* host = "www.yeelink.net";
const char* APIKEY = "xxxxxx";    //API KEY

int deviceId = 345667;
int sensorId_T = 387465;
int sensorId_H = 387466;

WiFiClient client;
const int tcpPort = 80;
char data[512] ;
int x = 0;
int dat = 0;

DHT dht(DHTPIN, DHTTYPE);
int postCount = 0;

void setup() {
  WiFi.mode(WIFI_AP_STA);                 //set work mode:  WIFI_AP /WIFI_STA /WIFI_AP_STA
  Serial.begin(115200);
  delay(10);

  // We start by connecting to a WiFi network
  Serial.println("");
  Serial.print("Connecting to ");
  Serial.println(ssid);

  WiFi.begin(ssid, password);

  while (WiFi.status() != WL_CONNECTED) {
    delay(500);
    Serial.print(".");
  }

  Serial.println("");
  Serial.println("WiFi connected");
  Serial.print("IP address: ");
  Serial.println(WiFi.localIP());

  dht.begin();
}

void loop() {
  delay(2000);

  // Reading temperature or humidity takes about 250 milliseconds!
  // Sensor readings may also be up to 2 seconds 'old' (its a very slow sensor)
  float h = dht.readHumidity();
  // Read temperature as Celsius (the default)
  float t = dht.readTemperature();
  Serial.print(h);
  Serial.println(t);

  // Check if any reads failed and exit early (to try again).
  if (isnan(h) || isnan(t)) {
    Serial.println("Failed to read from DHT sensor!");
    return;
  }

  if (!client.connect(host, tcpPort)) {
    Serial.println("connection failed");
    return;
  }
  //post value
  if (postCount == 0) {
    postData(deviceId, sensorId_T, t);
    postCount++;
  } else {
    postData(deviceId, sensorId_H, h);
    postCount = 0;
  }

  unsigned long timeout = millis();
  while (client.available() == 0) {
    if (millis() - timeout > 2000) {
      Serial.println(">>> Client Timeout !");
      client.stop();
      return;
    }
  }
  Serial.println("closing connection");
}

void postData(int dId, int sId, float val) {
  // We now create a URI for the request
  String url = "/v1.0/device/";
  url += String(dId);
  url += "/sensor/";
  url += String(sId);
  url += "/datapoints";
  String str = String(val);
  String data = "{\"value\":" + str + "}";

  // This will send the request to the server
  client.print(String("POST ") + url + " HTTP/1.1\r\n" +
               "Host: " + host + "\r\n" +
               "Accept: */*\r\n" +
               "U-ApiKey:" + APIKEY + "\r\n" +
               "Content-Length: " + String(str.length()+10) + "\r\n" +                       //发送数据长度
               "Content-Type: application/x-www-form-urlencoded\r\n" +
               "Connection: close\r\n\r\n" +
               data
              );
  Serial.println(str);
  Serial.println(String(str.length()));
}



修改程序中的相关参数,即可使用!
程序下载:[attach]1376[/attach]

#刷新网页,查看数据(两个数据发送需要相隔一段时间,否则数据上传错误):
[attach]1377[/attach]

你也可以登录手机端yeelink app,查看数据变化:

[attach]1381[/attach]


你还可以通过添加动作,实现“报警功能”,例如,当温度过高过低,湿度过高过低等情况时通过移动客户端、电子邮件等方式推送消息给你:
[attach]1382[/attach]
暂时还不支持微信推送功能!


作者: aosini    时间: 2016-5-5 08:11
好东西。。
作者: tiantianyouyou    时间: 2019-5-6 17:20
不错,很值得学习一下




欢迎光临 YFROBOT创客社区 (http://yfrobot.com.cn/) Powered by Discuz! X3.1