Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Wireless Temperature monitoring Using DHT-11

Status
Not open for further replies.

Daini

Newbie
Joined
Jan 15, 2021
Messages
1
Helped
0
Reputation
0
Reaction score
0
Trophy points
0
Activity points
22
Story
Hii welcome Back Friend I hope all of you will be fine
Here today I will make Arduino based Wireless Temperature monitoring Using DHT-11
make_a_gesture_control_robot_car_(1)_(1)_iMy2DXrNcW.png





Wireless temperature Monitoring Project Description:
Wireless Temperature Monitoring- This tutorial is based on the wireless Temperature monitoring using Bluetooth module, Arduino Uno and Android cell phone application. In this project, the temperature request can be sent to the Arduino at any time. This project also has a feedback system. The command is sent wirelessly to the Arduino Uno, the Arduino once receive the command then replay back with the temperature and humidity values. In this project, the famous DHT11 temperature and humidity module are used for monitoring the temperature and humidity.



DHT11 Temperature and Humidity sensor:
Bluetooth-based-temperature-monitoring-Arduino-request-temperature-using-Bluetooth-Bluetooth-and-DHT11-image2-300x218.jpg


The DHT11 Temperature and Humidity Module is one of the most commonly used sensors. The DHT11 sensor most frequently is used in Weather Station projects. The DHT11 Temperature and Humidity Sensor has a total of 4 pins. Out of these 4 pins, we will use only three pins. Pin number 3 will not be used.



Wireless Temperature monitoring Circuit Diagram:
Circuit


Circuit

Code

Code:
#include <SoftwareSerial.h>
SoftwareSerial bt(8, 9); // RX, TX
#include "dht.h"
#define dataPin 3

dht DHT;

int temp;
int hum;

void setup() {

Serial.begin(9600);
bt.begin(9600);
Serial.println("Ready");

}

void loop(){
  int readData = DHT.read11(dataPin);

  hum = DHT.humidity;
  temp = DHT.temperature;

bt.print(temp);
bt.print(";");
bt.print(hum);
bt.println(";");

  delay(10000);
}

NextDFM Software From NextPCB

index-slider-img_O2rlUp0ZTl.png


index-intro-img_Qm49orby4y.png


3 / 4
A PCB Design Problems Detector, An Engineering Solution ProviderImport the Gerber file with one click. No need for complicated file reading steps to review easily and improve efficiency.
Download Software
Help you quickly familiarize DFM design specifications and production needs to determine whether there are any manufacturing constraints
1_PCgVF4nRhb.png


1__2__RzL63MVGAb.png


2 / 3
Features
Make PCB design more standard Prevent the quality flaw
Impedance calculation function and lamination automation
Automatically generate the best puzzle
CAM350 free alternative version
Check Gerber files anytime, anywhere and parse it with one click
Instate Quote and evaluate delivery time Reduce cost and improve benefit।
Instate Quote and evaluate delivery time Reduce cost and improve benefitInstate Quote and evaluate delivery time Reduce cost and improve benefit
Use It

Use It



Schematics
Schematic
dht11_oXKOiyqsey.jpg


Code
 
Last edited by a moderator:

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top