sarful
Published © CERN-OHL

NodeMcu to DHT Interface in Blynk app| On IOT Platform

Today i show you how to interface DHT sensor Value in Blynk Apps use NodeMcu8266 .

BeginnerFull instructions provided3 hours4,292
NodeMcu to DHT Interface in Blynk app| On IOT Platform

Things used in this project

Hardware components

NodeMcu
×1
DHT11
×1
Jumper Wire
×1
Breadbord
×1

Software apps and online services

Arduino IDE
Arduino IDE
Blynk
Blynk

Story

Read more

Schematics

Dht to NodeMcu Schematic-Mechatronicslabrpi

Code

NodeMcu to DHT Interface in Blynk app| On IOT Platform

Arduino
#define BLYNK_PRINT Serial
#include <ESP8266WiFi.h>
#include <BlynkSimpleEsp8266.h>
#include "DHT.h"           // including the library of DHT11 temperature and humidity sensor
#include <SimpleTimer.h>   //including the library of SimpleTimer
#define DHTTYPE DHT11      // DHT 11

#define dht_dpin 14
DHT dht(dht_dpin, DHTTYPE); 
SimpleTimer timer;
char auth[] = "8c48fad49b914b789e87bb29742cf6f5";            // You should get Auth Token in the Blynk App.
                                           // Go to the Project Settings (nut icon).

char ssid[] = "..........";    // Your WiFi credentials.
char pass[] = "..........";  // Set password to "" for open networks.
float t;                                   // Declare the variables 
float h;



void setup()
{
    Serial.begin(9600);// Debug console
    Blynk.begin(auth, ssid, pass);
    dht.begin();
    timer.setInterval(2000, sendUptime);
}

void sendUptime()
{
  
  float h = dht.readHumidity();
  float t = dht.readTemperature(); 
  Serial.println("Humidity and temperature\n\n");
  Serial.print("Current humidity = ");
  Serial.print(h);
  Serial.print("%  ");
  Serial.print("temperature = ");
  Serial.print(t); 
  Blynk.virtualWrite(V0, t);
  Blynk.virtualWrite(V1, h);
  
}

void loop()
{
  Blynk.run();
  timer.run();
}

DHT_monitoring_In_Blynk_app_Use_NodeMcu

Credits

sarful

sarful

59 projects • 44 followers
I am Sarful , I am a Mechatronics Engineer & also a teacher I am Interested in the evolution of technology in the automation industry .
Thanks to Sarful .

Comments