3482|0

85

帖子

0

TA的资源

一粒金砂(中级)

楼主
 

零知ESP8266 Blynk手机APP教程:监控室内温湿度 [复制链接]

本次将使用blynk app+服务器(本地) + 零知ESP8266开发板的组合方式,通过手机APP来观察由ESP8266获取的温湿度情况。

1、准备

(1)零知ESP8266开发板

(2)SHT30温湿度模块

(3)零知开源开发工具

2、电路连接

线路连接很简单,按下图连接即可:

 

实物连接:

3、手机APP端

设置手机端Blynk可参考:http://www.lingzhilab.com/bbs/index/showonepostz?pid=356

我们需要两个组件分别显示温度和湿度信息,做好后界面如下:

页面组件可扫描下方二维码复制我共享的demo:

4、ESP8266端

核心代码如下:

/* 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
}

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

5、验证测试

在手机blynk app上可以观察到如下结果:

可以很直观的看到温湿度的曲线分布,可用于实时监测。

更多详细资料可到零知实验室官网免费获取。


此内容由EEWORLD论坛网友roc2原创,如需转载或用于商业用途需征得作者同意并注明出处

点赞 关注
 

回复
举报
您需要登录后才可以回帖 登录 | 注册

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

相关文章 更多>>
关闭
站长推荐上一条 1/6 下一条

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

About Us 关于我们 客户服务 联系方式 器件索引 网站地图 最新更新 手机版

站点相关: 国产芯 安防电子 汽车电子 手机便携 工业控制 家用电子 医疗电子 测试测量 网络通信 物联网

北京市海淀区中关村大街18号B座15层1530室 电话:(010)82350740 邮编:100190

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2025 EEWORLD.com.cn, Inc. All rights reserved
快速回复 返回顶部 返回列表