How to measure temperature using arduino

  Рет қаралды 25,121

Electro Retro

Electro Retro

4 жыл бұрын

hi guys in this video i will show you how to measure temperature using arduino
componets needed
1) arduino nano
2)ntc thermistor
3) 10k residtor
4) jumper pins
5)breadboard
---------------------------------------
code:- drive.google.com/file/d/1hFtZ...
---------------------------------------
thanks for watching
feel free to comment anything about this video
==========================================

Пікірлер: 60
@ElectroRetro
@ElectroRetro 4 жыл бұрын
code:- drive.google.com/file/d/1hFtZOZ4nYTx-XEkdkFRlEnsFX7IqBVLP/view?usp=drivesdk
@kunaldhar6713
@kunaldhar6713 2 жыл бұрын
Tip: People Always see the thumbnail, preview, channel name, logo and length of the video to determine if they are going to click on the video, and because it can be done in 4 minuets and there are tutorials which show it in less time and provide more information than your video, that would be one of those reasons why this video has less views then others. people want to get it working in small amount of time but your video is over 7 minuets long which at this point people would watch this video if they want nice presentation or some video making technique or for entertaining purposes. so Good Luck on which type of video you want to make, usually entertaining videos make more views, subs, likes but less use.I am not blaming that this video is not good so don't mind me and if anyone found it useful then please reply me so i can know if my reply was usefull to someone's life. Have a good day.
@ElectroRetro
@ElectroRetro 2 жыл бұрын
👍🏼
@YungRu
@YungRu 11 ай бұрын
thanks, worked perfeclty
@ElectroRetro
@ElectroRetro 11 ай бұрын
Glad it helped
@imzvampire
@imzvampire 4 жыл бұрын
👍👍
@thusharpa2924
@thusharpa2924 4 жыл бұрын
👍
@fejlevi
@fejlevi Жыл бұрын
Hey! What should I change to make it work with 5 kOhm thermistor?
@athuldev5307
@athuldev5307 4 жыл бұрын
😁
@j.tunoud
@j.tunoud Жыл бұрын
Mister, What if my board is an esp32 and it only supply out a 5V will that effect the accuracy? or what should I change in order to match the one you show
@hasibulhossainshanto7042
@hasibulhossainshanto7042 2 ай бұрын
Hi. Can i use this with 1k resistor?
@fahadraza7152
@fahadraza7152 3 жыл бұрын
sir, I want to calculate child body temperature when so please make a video on that.
@ElectroRetro
@ElectroRetro 3 жыл бұрын
Sure
@fahadraza7152
@fahadraza7152 3 жыл бұрын
@@ElectroRetro thanks sir
@mohammedmoiz1381
@mohammedmoiz1381 6 ай бұрын
can you mention which ntc thermistor is being used here....
@ElectroRetro
@ElectroRetro 6 ай бұрын
I am using this ntc thermistor : robu.in/product/b3950-10k-ntc-thermistor-temperature-sensor-525mm-with-xh2-54-connector-with-0-5-meter-cable/?gad_source=1
@90simissthe
@90simissthe 2 жыл бұрын
ah i understand now.
@gabupal1324
@gabupal1324 2 жыл бұрын
How did you arrive at the formula: R2 = R1 * (1023 / Vo - 1) Can you explain this please.
@ElectroRetro
@ElectroRetro 2 жыл бұрын
It's Steinhart-Hart equation used to convert resistance to temperature. en.m.wikipedia.org/wiki/Steinhart%E2%80%93Hart_equation
@gabupal1324
@gabupal1324 2 жыл бұрын
@@ElectroRetro I am asking about the step before the Steinhart-hart equation, where you calculate the resistance of R2.
@ElectroRetro
@ElectroRetro 2 жыл бұрын
R2 is calculated by the value of resistor R1, Input voltage Vin, output voltage Vout (the voltage between the thermistor and resistor R1) R2= (VOUT * R1) /(VIN - VOUT).
@gabupal1324
@gabupal1324 2 жыл бұрын
@@ElectroRetro So what is the significance of the numbers "1023" and "1.0".
@ElectroRetro
@ElectroRetro 2 жыл бұрын
Analog values of measured output
@mukz7447
@mukz7447 3 ай бұрын
How do you know which is + and - on the wire?
@ElectroRetro
@ElectroRetro 3 ай бұрын
For NTC resistor there is no + and -
@mukz7447
@mukz7447 3 ай бұрын
@@ElectroRetro thanks :) also for the code it is saying could not create the sketch, is it possible you paste the code for me?
@ElectroRetro
@ElectroRetro 3 ай бұрын
int ThermistorPin = A1; int Vo; float R1 = 10000; float logR2, R2, T; float c1 = 1.009249522e-03, c2 = 2.378405444e-04, c3 = 2.019202697e-07; void setup() { Serial.begin(9600); } void loop() { Vo = analogRead(ThermistorPin); R2 = R1 * (1023.0 / (float)Vo - 1.0); logR2 = log(R2); T = (1.0 / (c1 + c2*logR2 + c3*logR2*logR2*logR2)); T = T - 273.15; Serial.print("Temperature: "); Serial.print(T); Serial.println("c"); delay(100); }
@ashiquzzamanashiquzzaman261
@ashiquzzamanashiquzzaman261 Жыл бұрын
Brother I need a help to built a temperature measurement system?
@ElectroRetro
@ElectroRetro Жыл бұрын
Sure
@ambalapetlover7904
@ambalapetlover7904 2 жыл бұрын
what about accuracy?
@ElectroRetro
@ElectroRetro 2 жыл бұрын
+/- 1 degree Celsius
@ambalapetlover7904
@ambalapetlover7904 2 жыл бұрын
@@ElectroRetro thanks for fast reply i want to make incubator controller using this can it give accuracy much more???
@ElectroRetro
@ElectroRetro 2 жыл бұрын
I think this will work fine for the incubator.
@ElectroRetro
@ElectroRetro 2 жыл бұрын
Or you can use w1209 thermostat. Previously I made an incubator using w1209 and it works.
@ambalapetlover7904
@ambalapetlover7904 2 жыл бұрын
@@ElectroRetro i m already using w1209 but i want to make a fully automatic incubator commercial controller are costly i use your code 10 minut before this work fine for me only problem is noice problem temperature reading fluctuate very much not give me a stable reading
@bedstag
@bedstag 10 ай бұрын
The link for the code tries to execute a JS virus script!
@ElectroRetro
@ElectroRetro 10 ай бұрын
drive.google.com/file/d/1L_1ppzY5ntrKaL_lm-xtDeN60wLGyvCq/view?usp=drivesdk. Try this link, now i use Google drive. Previously i used mediafire.
@RandomlySelectedUserName
@RandomlySelectedUserName 3 жыл бұрын
its showing -275.5 -254.2 300.1 and stuff :/
@ElectroRetro
@ElectroRetro 3 жыл бұрын
Try changing resistors
@RandomlySelectedUserName
@RandomlySelectedUserName 3 жыл бұрын
@@ElectroRetro happens same
@ElectroRetro
@ElectroRetro 3 жыл бұрын
@@RandomlySelectedUserName change float CL values
@aacm1259
@aacm1259 2 жыл бұрын
@@ElectroRetro to what do we change it ser?
@ElectroRetro
@ElectroRetro 2 жыл бұрын
In the code change float CL values.
Уроки Arduino. Подключение термометров DS18B20 и NTC термистора
12:25
Measuring Temperature with Arduino - 5 Sensors
29:55
DroneBot Workshop
Рет қаралды 140 М.
THE POLICE TAKES ME! feat @PANDAGIRLOFFICIAL #shorts
00:31
PANDA BOI
Рет қаралды 25 МЛН
THEY WANTED TO TAKE ALL HIS GOODIES 🍫🥤🍟😂
00:17
OKUNJATA
Рет қаралды 23 МЛН
Survival skills: A great idea with duct tape #survival #lifehacks #camping
00:27
50 YouTubers Fight For $1,000,000
41:27
MrBeast
Рет қаралды 95 МЛН
3 Alternatives you can use instead of the Temperature Sensor (NTC)
8:08
How to use DS18B20 Temperature sensor with arduino
8:37
miliohm
Рет қаралды 123 М.
Arduino Coolant Sensor | Thermistor
15:15
Ovens Garage
Рет қаралды 18 М.
【For Beginner】How to start electronics and what item is needed
18:16
MAX31865 - Pt100 RTD module
23:10
Curious Scientist
Рет қаралды 25 М.
Measuring Temperature using PT100 and Arduino Part 1
11:56
best engineering projects
Рет қаралды 21 М.
DIY Measure Temperature using NTC Thermistor and Arduino UNO
6:41
НЕ ПОКУПАЙ СМАРТФОН, ПОКА НЕ УЗНАЕШЬ ЭТО! Не ошибись с выбором…
15:23
WATERPROOF RATED IP-69🌧️#oppo #oppof27pro#oppoindia
0:10
Fivestar Mobile
Рет қаралды 18 МЛН
$1 vs $100,000 Slow Motion Camera!
0:44
Hafu Go
Рет қаралды 21 МЛН
Easy Art with AR Drawing App - Step by step for Beginners
0:27
Melli Art School
Рет қаралды 13 МЛН