打印

【零知ESP8266教程】快速入门26 Blynk手机APP显示室内温湿度

[复制链接]
571|0
手机看帖
扫描二维码
随时随地手机跟帖
跳转到指定楼层
楼主
roc2two|  楼主 | 2019-11-15 10:48 | 只看该作者 |只看大图 回帖奖励 |倒序浏览 |阅读模式
本文继续讲解使用blynk app+服务器(本地) + 零知ESP8266硬件的方法,通过手机APP来观察由ESP8266获取的温湿度信息。

一、硬件
1.电脑,windows系统
2.零知ESP8266开发板
3.智能手机一部 + app(Blynk)
4.micro-usb线
5.SHT30温湿度模块

二、连接




2、关于准备工作不再细讲,请查看 Blynk手机APP点灯示例 ,已经对操作步骤进行了详细说明。
3、手机APP端
我们需要两个组件分别显示温度和湿度信息,做好后界面如下:



准备以下代码:
<font size="3">/* Comment this out to disable prints and save space */
#define BLYNK_PRINT Serial
  
  
#include <ESP8266WiFi.h>
#include <BlynkSimpleEsp8266.h>
  
// You should get Auth Token in the Blynk App.
// Go to the Project Settings (nut icon).
char auth[] = "xx";
  
// Your WiFi credentials.
// Set password to "" for open networks.
char ssid[] = "xx";
char pass[] = "xx";
  
char local_domain[] = "192.168.0.111";
  
/*SHT3X 传感器
*   使用软I2C接口
*/
#define SHT3X_SDA D5
#define SHT3X_SCL D6
  
#include "SHT3X.h"
SlowSoftWire shtWire(SHT3X_SDA,SHT3X_SCL,true);
  
HTU3X myHumidity;
  
BlynkTimer timer;
void myTimerEvent()
{
  
    float humd, temp;
    myHumidity.readTempAndHumi(&temp, &humd);
      
    Serial.print("时间:");
    Serial.print(millis());
    Serial.print(" 温度:");
    Serial.print(temp, 1);
    Serial.print(" °C");
    Serial.print(" 湿度:");
    Serial.print(humd, 1);
    Serial.print("%");
    Serial.println();
      
    Blynk.virtualWrite(V0, temp);
    Blynk.virtualWrite(V1, humd);
}
  
void setup()
{
  // Debug console
  Serial.begin(9600);
  
  Blynk.begin(auth, ssid, pass, local_domain,8080);
      
    myHumidity.begin(shtWire);
      
    timer.setInterval(1000L, myTimerEvent);
}
  
void loop()
{
  Blynk.run();
    timer.run(); // Initiates BlynkTimer
}
</font>


更改代码中的IP、token等信息,然后验证并上传到零知-ESP8266板上。

5、验证测试
在手机blynk app上可以观察到如下结果:


还有效果视频哦,可以查看零知零知实验室搜索即可

使用特权

评论回复

相关帖子

发新帖 我要提问
您需要登录后才可以回帖 登录 | 注册

本版积分规则

75

主题

85

帖子

1

粉丝