Arduino Tutorial 25- Portable Temperature and Humidity Sensor with DHT11

  Рет қаралды 30,074

Enjoy Mechatronics

Enjoy Mechatronics

Күн бұрын

Let's create a Portable Temperature and Humidity Sensor with the help of (DHT11 module, Arduino, LCD Display).
● DHT11 Sensor: • Arduino Tutorial 23- H...
● LCD Display: • Arduino Tutorial 24- C...
● Playlist Link: bit.ly/2VT2ZAN
● Arduino IDE: www.arduino.cc...
--------------------------------------------------------------------
► Get Your First Arduino Starter Kit 👇:
✅ amzn.to/3VfGNM1
👉 amzn.to/3L7gPpw
--------------------------------------------------------------------
FOLLOW ME:
● Facebook: / enjoymechatronics
● GitHub: github.com/Enj...
♥ Don't Click This! bit.ly/3jvI8g6
--------------------------------------------------------------------
► All content by Enjoy Mechatronics is 100% free. I believe that education should be freely available to everyone.

Пікірлер: 50
@mariuspetcu7482
@mariuspetcu7482 2 жыл бұрын
Thank You so Much for the Simplicity of Explanations and most of all for tell us What are those "words"/"shortcuts" "mambo jumbo" for us Newbies 🤣😂. Please keep us on loop with all your work 😊🤝. Thank You
@kemaketseforkssebitiela3089
@kemaketseforkssebitiela3089 Жыл бұрын
Well done!!! Point taken well understood You're too good, precise and straight to the point no ambiguity. ❤❤
@EnjoyMechatronics
@EnjoyMechatronics Жыл бұрын
Thanks man
@robertwebb9657
@robertwebb9657 2 жыл бұрын
Than was an excellent video on what has proven to be a difficult project for me because of Library issues. I will be following your videos because they are concise and easy to follow.
@EnjoyMechatronics
@EnjoyMechatronics 2 жыл бұрын
Thanks I really appreciate it
@ashenskywalker5537
@ashenskywalker5537 6 ай бұрын
this made my dht11 sensor burnout the blue plastic shrunk, i read online im supposed to have a resistor on the dht11, why dont you have one on yours and it works?
@wesleyfredrick4170
@wesleyfredrick4170 Жыл бұрын
I was looking at getting one of these and confused how it takes both temperature and humidity using just one analog pin. So I looked at the library. It basically communicates with a chip on the sensor board, sending it commands and reading bits. In other words, it just works, don't worry silly. Thanks for making this.
@EnjoyMechatronics
@EnjoyMechatronics Жыл бұрын
It is my pleasure. Thanks for this information.
@stefpauwels7112
@stefpauwels7112 Жыл бұрын
first thanks, everythings works expect the update on the temp en humidity. now there always stand a zero. How do i fix this?
@computersindia
@computersindia 6 ай бұрын
Interesting and useful Tutorial, Thanks for sharing and providing support through comment sections. Great!!!
@EnjoyMechatronics
@EnjoyMechatronics 6 ай бұрын
Thank you! Cheers!
@KeithAshleyRivero
@KeithAshleyRivero 6 ай бұрын
My lcd only shows 0 on both temperature and humidity, do you perhaps know what is wrong and how to fix it?
@BibhasMandal73
@BibhasMandal73 5 ай бұрын
I built it its working, I tweaked the code a bit
@enyou2906
@enyou2906 3 ай бұрын
How long can the 9V battery last powering that thing
@captain-od1me
@captain-od1me 4 ай бұрын
Temp and humidity are both at 0 can you help me I already changed 0x3F to 0x27 still shows 0 ?
@RailyAlmeron-j4v
@RailyAlmeron-j4v 11 ай бұрын
Hello there is no LiquidCrystal I2C by Marcho Schwartz in my Library what Alternative library should I use?
@EnjoyMechatronics
@EnjoyMechatronics 11 ай бұрын
Write the same name and scroll down to see it or download it from the internet as a zip file, then open your Arduino IDE, click on Sketch > Include Library > Add . ZIP Library.
@iiTzblnK
@iiTzblnK 9 ай бұрын
can you do this with assembly language ? is it possible ?
@malikthetalentmaker6001
@malikthetalentmaker6001 2 жыл бұрын
Quick question From where can I bring these stuff
@ultralaggerm.e.d858
@ultralaggerm.e.d858 Жыл бұрын
I have a problem. So the temperature and humidity show properly, but where the % is expected to be, there isn't the symbol but some random numbers instead
@EnjoyMechatronics
@EnjoyMechatronics Жыл бұрын
maybe it is not supported. You could create any custom character by following this tutorial: kzbin.info/www/bejne/qGGxh3d8fpJkaZY
@zaydhassan1069
@zaydhassan1069 2 жыл бұрын
Hi Amazing video and clear to understand!
@nsxamo4882
@nsxamo4882 Жыл бұрын
I have a problem....my lcd display temp: 0 C and Humidity: 0 %....why 0? all parts are still new
@computersindia
@computersindia 6 ай бұрын
As mentioned in the tutorial, try with 0x3F and 0x27, also try with alternative A4 and A5 pins in the Arduino UNO, the same problem was with me, changing helped me.
@vlatkomacak89
@vlatkomacak89 5 ай бұрын
nice one, but project only on IDE 1.8 version work😀
@161_abhishekmane3
@161_abhishekmane3 2 жыл бұрын
Data will automatically stored the after remove the cable from pc am j right ?
@Zero_Two_91
@Zero_Two_91 Жыл бұрын
Great stuff. I really would appreciate it if u shared the code with us
@aleksandarlazovic7390
@aleksandarlazovic7390 Жыл бұрын
I have problem my code won't upload to arduino. It just says uploading and never uploads.
@EnjoyMechatronics
@EnjoyMechatronics Жыл бұрын
Try a basic blink sketch
@nethumirajapaksha4284
@nethumirajapaksha4284 5 ай бұрын
can u provide a link to ur code pls. i cant be bothered typing it
@darsheelalai1241
@darsheelalai1241 4 ай бұрын
#include ; #include ; DHT dht(2, DHT22); int temp; int humidity; int dt = 2000; LiquidCrystal_I2C lcd(0x27, 16, 2); void setup() { dht.begin(); lcd.init(); lcd.backlight(); } void loop() { delay(dt); temp = dht.readTemperature(); humidity = dht.readHumidity(); lcd.setCursor(0, 0); lcd.print("Temp: "); lcd.print(temp); lcd.print(" C"); lcd.setCursor(0, 1); lcd.print("Humidity: "); lcd.print(humidity); lcd.print(" %"); }
@kitkirkyen2002
@kitkirkyen2002 2 жыл бұрын
Thank you so much sir..
@sahilraj5672
@sahilraj5672 Жыл бұрын
there is nothing on lcd display after uploading the code. what to do?
@EnjoyMechatronics
@EnjoyMechatronics Жыл бұрын
Change the address to 0x3F or 0x27 and try to rotate the potentiometer.
@computersindia
@computersindia 6 ай бұрын
@@EnjoyMechatronics Thanks, this suggestion helped!!!
@malikthetalentmaker6001
@malikthetalentmaker6001 2 жыл бұрын
الله عليك يا فخر العرب
@sanjaykhatri6093
@sanjaykhatri6093 Жыл бұрын
you code is not given in the description can you pls send me the arduino code
@EnjoyMechatronics
@EnjoyMechatronics Жыл бұрын
Sorry 😞 I haven't saved the code
@techlokka4973
@techlokka4973 10 ай бұрын
gammak sudda
@Tompok99
@Tompok99 Жыл бұрын
D1 esp can
@darsheelalai1241
@darsheelalai1241 4 ай бұрын
#include ; #include ; DHT dht(2, DHT22); int temp; int humidity; int dt = 2000; LiquidCrystal_I2C lcd(0x27, 16, 2); void setup() { dht.begin(); lcd.init(); lcd.backlight(); } void loop() { delay(dt); temp = dht.readTemperature(); humidity = dht.readHumidity(); lcd.setCursor(0, 0); lcd.print("Temp: "); lcd.print(temp); lcd.print(" C"); lcd.setCursor(0, 1); lcd.print("Humidity: "); lcd.print(humidity); lcd.print(" %"); }
@darsheelalai1241
@darsheelalai1241 4 ай бұрын
This is the code... Use 0x27 instead of 0x3F
@malikthetalentmaker6001
@malikthetalentmaker6001 2 жыл бұрын
Coooooooool
@laurynasmatkus9528
@laurynasmatkus9528 Жыл бұрын
whats the code plz tel my
@javiercruzcahuana639
@javiercruzcahuana639 Жыл бұрын
Gacias
@EnjoyMechatronics
@EnjoyMechatronics Жыл бұрын
No problem
@hiddenbeauty9871
@hiddenbeauty9871 2 жыл бұрын
But I don't have any result
@hiddenbeauty9871
@hiddenbeauty9871 2 жыл бұрын
Int dt =2000; This makes errors what I have written odd
@EnjoyMechatronics
@EnjoyMechatronics 2 жыл бұрын
int i is lower case
Arduino Tutorial 26- Setting up and Using the HC-05 Bluetooth Module
10:30
Enjoy Mechatronics
Рет қаралды 10 М.
Running With Bigger And Bigger Lunchlys
00:18
MrBeast
Рет қаралды 135 МЛН
规则,在门里生存,出来~死亡
00:33
落魄的王子
Рет қаралды 31 МЛН
Когда отец одевает ребёнка @JaySharon
00:16
История одного вокалиста
Рет қаралды 13 МЛН
إخفاء الطعام سرًا تحت الطاولة للتناول لاحقًا 😏🍽️
00:28
حرف إبداعية للمنزل في 5 دقائق
Рет қаралды 73 МЛН
Get Started in Electronics #9 - Using the DHT11 Humidity & Temp Sensor
15:33
How to use  LCD LCD1602  with I2C module for Arduino - Robojax
13:12
ESP32 DHT Web Server Project
5:53
Enjoy Mechatronics
Рет қаралды 117 М.
DHT11 and DHT22 Sensor Using with Arduino
7:20
Maker 101
Рет қаралды 75 М.
DHT11 & DHT22 Sensors Temperature and Humidity Tutorial using Arduino
4:51
How To Mechatronics
Рет қаралды 310 М.
Running With Bigger And Bigger Lunchlys
00:18
MrBeast
Рет қаралды 135 МЛН