【零知ESP8266教程】快速入门26 Blynk手机APP显示温湿度-Arduino中文社区 - Powered by Discuz! Archiver

零知实验室-roc 发表于 2019-11-15 10:24

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


本文继续讲解使用blynk app+服务器(本地) + 零知ESP8266硬件的方法,通过手机APP来观察由ESP8266获取的温湿度信息。

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

二、连接




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



准备以下代码:
/* 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上可以观察到如下结果:


效果视频:点我传送

iamdai2000 发表于 2020-2-22 06:58

mark,学习中

dong666 发表于 2020-4-24 15:52

效果视频加载不出来哦

bird_144 发表于 2021-8-14 10:33

过程很诱人,但是blynk登录不上,白瞎了这么好的程序,建立本地服务器,又不能显示blynk server中的"启动服务器.bat",后来改换思路,用了blinker点灯科技的app,阿里云服务器,已经能够开关内置的显示灯和继电器

kkk236 发表于 2021-12-29 15:33

11111111111111111
页: [1]
查看完整版本: 【零知ESP8266教程】快速入门26 Blynk手机APP显示温湿度