ESP32 Tutorial - DHT11/DHT22 (Temperature and Humidity Sensor)

  Рет қаралды 96,287

Enjoy Mechatronics

Enjoy Mechatronics

Күн бұрын

Пікірлер: 62
@random_guy_whith_random_name
@random_guy_whith_random_name Жыл бұрын
Much better than my teacher, she asks us for projects in a short time and then leaves for a week without teaching us anything and expects us to know everything. You made it look so easy that I wonder how hard it was for him to explain it to us anyway.
@yahyamedani3915
@yahyamedani3915 Жыл бұрын
Great video!! Helped me pass my prostate exam
@EnjoyMechatronics
@EnjoyMechatronics Жыл бұрын
Glad it helped!
@2race66
@2race66 11 ай бұрын
#include DHT dht(26, DHT11); void setup() { dht.begin(); delay(2000); Serial.begin(115200); } void loop() { float temp = dht.readTemperature(); float humidity = dht.readHumidity(); Serial.print("Temp: "); Serial.print(temp); Serial.print(" C "); Serial.print("Humidity: "); Serial.print(humidity); Serial.println(" % "); delay(2000); }
@marypazmikomatala2702
@marypazmikomatala2702 8 ай бұрын
thank you
@Andyeditzs
@Andyeditzs 2 ай бұрын
Thanks
@DanBurgaud
@DanBurgaud 10 ай бұрын
looks and sound simple to understand. thanks!
@EnjoyMechatronics
@EnjoyMechatronics 10 ай бұрын
You are welcome!
@brunofrancosentis5148
@brunofrancosentis5148 Жыл бұрын
Excellent, finally a good tutorial about this. Thanks.
@EnjoyMechatronics
@EnjoyMechatronics Жыл бұрын
Glad it was helpful!
@aXfranXa
@aXfranXa 8 ай бұрын
92% of humidity? xD great video!
@glen4cindy
@glen4cindy Жыл бұрын
This is an awesome tutorial. I see you are not using a resistor on your signal pin. I have one of these working successfully with an ESP32 but when I tried using an ESP32-S2 it acts just like it's not present. I'm using a resistor on the signal pin.
@cabinfeverjack1925
@cabinfeverjack1925 2 жыл бұрын
Very simple and well explained, Thank You
@EnjoyMechatronics
@EnjoyMechatronics 2 жыл бұрын
Glad it was helpful😊
@irfanudinnoranwar3944
@irfanudinnoranwar3944 6 ай бұрын
i used dht 22 and managed to get the reading for my three sensor. But the last dht22 gave me nan celsius and ann humidity. How to solve this?
@sreeramramesh4634
@sreeramramesh4634 7 ай бұрын
Hro what app are u using to show dht11 commected to esp32?
@Marvel_fan_page_yt
@Marvel_fan_page_yt 2 ай бұрын
In which app we should run the code
@naodtesfalem6758
@naodtesfalem6758 Жыл бұрын
well explained, kudos!!
@victorvanderpol504
@victorvanderpol504 Ай бұрын
I have problems with the esp32 WiFi cutting out. I’ve read a comment somewhere that this is a common problem with the DHT11/22
@clerciomarchinhak4084
@clerciomarchinhak4084 9 ай бұрын
I'll try using your video, as I have an ESP32 S3 board and an INA219 current sensor and using PlatformIO in VSCode and I can't see the current values. It only says `Talk is running`, which means it is reading, executing but the current values do not appear on the terminal. If you can give me a tip I would appreciate it! Or if I had a video from someone even better?
@SAIRETANIMS
@SAIRETANIMS Жыл бұрын
Hello, thank you for video, but you don't show how to install driver for ESP32 and how you installed ESP32 in 'Broad Manager'
@EnjoyMechatronics
@EnjoyMechatronics Жыл бұрын
We've talked about that in this guide kzbin.info/www/bejne/l32ofJx9g8t7kNk
@SAIRETANIMS
@SAIRETANIMS Жыл бұрын
@@EnjoyMechatronics ty
@luisfelipeonellipini9124
@luisfelipeonellipini9124 Жыл бұрын
Hi, someone knows what is the maximum area i can use this sensor?
@nafisatasfia2993
@nafisatasfia2993 8 ай бұрын
THE BEST!!
@floura_san5318
@floura_san5318 9 ай бұрын
جزاك الله كل خير 🥰🥰🥰🥰
@EnjoyMechatronics
@EnjoyMechatronics 9 ай бұрын
الله يبارك لك
@eagleeyegps8003
@eagleeyegps8003 Ай бұрын
Hello, Thank you for your video i am looking for the circuit which can operate motor on/off with humidity and temperature sensor Please help me
@EnjoyMechatronics
@EnjoyMechatronics Ай бұрын
That's a great project idea!
@mounikap-s1d
@mounikap-s1d 11 ай бұрын
Iam struggling for 1 week for my temp project still I cannot manage
@fjz613
@fjz613 Жыл бұрын
Can you use shtc3?
@EnjoyMechatronics
@EnjoyMechatronics 2 жыл бұрын
♥ Don't Click This! : bit.ly/3jvI8g6
@susmitadey9816
@susmitadey9816 Жыл бұрын
Why my output is like this? o/p: TEMP: nan C Humidity: nan% Please help me out.
@vlogerji
@vlogerji 11 ай бұрын
Same problem with me
@winstonacousticstudio445
@winstonacousticstudio445 11 ай бұрын
Calibrate ?
@robokids3801
@robokids3801 10 ай бұрын
It is because your dht is not properly connected or it is not working
@robokids3801
@robokids3801 10 ай бұрын
Check the pins
@WorldofDreams0.0
@WorldofDreams0.0 4 ай бұрын
Same
@sanabouhaha6637
@sanabouhaha6637 2 жыл бұрын
hello, when i compile it says failed uploading. i pressed the boot button and the enable one but still the same problem. what can i do please?
@A.n.o.n.y.m.o.u.s_Creator
@A.n.o.n.y.m.o.u.s_Creator Жыл бұрын
You are 100% sure you didn't make a mistake in the code? Try pressing verify for compiler to check if the code is "doable" for your board. Of course it may not support all exceptions but it usually helps to notice a missing comma or dot. If it does compile you should make sure you have the exact board. For example just by looks Esp32 and Esp8266 look simmilar (build almost the same way, usually on the board type, and both cores are shielded) but are different inside.
@onelineurdu9483
@onelineurdu9483 Жыл бұрын
Osam its work 100% thanks bro
@EnjoyMechatronics
@EnjoyMechatronics Жыл бұрын
Great 👍
@renatorodriguezjr3537
@renatorodriguezjr3537 Жыл бұрын
Can I download the results?
@deoboligao5971
@deoboligao5971 Жыл бұрын
Hi, can you use mq2 sensor?
@EnjoyMechatronics
@EnjoyMechatronics Жыл бұрын
Of course kzbin.info/www/bejne/pXvEXnWkq9OcabM
@Marvel_fan_page_yt
@Marvel_fan_page_yt 2 ай бұрын
i need that project how much it cost
@EnjoyMechatronics
@EnjoyMechatronics 2 ай бұрын
The ESP32 is pretty affordable, and the DHT11/22 sensor is cheap too!
@Marvel_fan_page_yt
@Marvel_fan_page_yt 2 ай бұрын
Can anyone Send me the code
@brianandresaragonzabala8320
@brianandresaragonzabala8320 9 ай бұрын
deben instalar una libreria mas aparte de la que mencionan en el video la libreria es :Adafruit Unified Sensor
@lizexi7115
@lizexi7115 Жыл бұрын
why do i keep getting nan? i have arduino nano iot 33
@EnjoyMechatronics
@EnjoyMechatronics Жыл бұрын
There is a problem with the sensor
@anyajoshi1069
@anyajoshi1069 Жыл бұрын
is this esp32 s2??
@ArmanManyata
@ArmanManyata 6 ай бұрын
thanks a lot
@EnjoyMechatronics
@EnjoyMechatronics 6 ай бұрын
Happy to help
@ShivakotiManish
@ShivakotiManish 3 ай бұрын
Can i get the code
@alaricshiran9189
@alaricshiran9189 Жыл бұрын
why am i get nanC as a result
@EnjoyMechatronics
@EnjoyMechatronics Жыл бұрын
Something went wrong with the sensor
@janaugustmagallanes1487
@janaugustmagallanes1487 3 ай бұрын
code pls
@HansGeorgHorzella
@HansGeorgHorzella Жыл бұрын
super
@EnjoyMechatronics
@EnjoyMechatronics Жыл бұрын
Thank you
@leadomingo4567
@leadomingo4567 7 ай бұрын
Send code
@hugocarloshuizaquinto3619
@hugocarloshuizaquinto3619 Жыл бұрын
HAY CODIGO HAY LIKE
ESP32 DHT Web Server Project
5:53
Enjoy Mechatronics
Рет қаралды 144 М.
Tutorial - Multi-sensor setups for ESP32 & Home Assistant
7:20
Byte My Bits
Рет қаралды 111 М.
Хаги Ваги говорит разными голосами
0:22
Фани Хани
Рет қаралды 2,2 МЛН
-5+3은 뭔가요? 📚 #shorts
0:19
5 분 Tricks
Рет қаралды 13 МЛН
Introduction to ESP32 Board - Getting Started ( Step by Step)
14:49
Enjoy Mechatronics
Рет қаралды 108 М.
DHT22/ AM2302 Temperature Sensor Tutorial
5:43
Dominic LeBoeuf
Рет қаралды 271
ESP32 Guide 2024 | Choosing and Using an ESP32 Board
41:06
DroneBot Workshop
Рет қаралды 384 М.
ESP-NOW - Peer to Peer ESP32 Network
43:02
DroneBot Workshop
Рет қаралды 394 М.
This AI Robot Is Doing the Impossible - Unitree x ElizaWakesUp
9:30
AI Revolution
Рет қаралды 160 М.
Её автомобиль никто не хотел ремонтировать!
20:12
Гараж Автоэлектрика
Рет қаралды 1,5 МЛН
Такого Корпуса для ПК нет ни у кого в России
1:00
ЖЕЛЕЗНЫЙ КОРОЛЬ
Рет қаралды 847 М.
Самые простые строительные леса
0:54
Канал ИДЕЙ
Рет қаралды 1 МЛН
DID YOU NOTICE ANY LAPSES IN THE VIDEO or NOT? / MARGO_FLURY
0:34
MARGO FLURY | Маргарита Дьяченкова
Рет қаралды 12 МЛН
Её автомобиль никто не хотел ремонтировать!
20:12
Гараж Автоэлектрика
Рет қаралды 1,5 МЛН