• Home
  • Archive
  • Tools
  • Contact Us

The Customize Windows

Technology Journal

  • Cloud Computing
  • Computer
  • Digital Photography
  • Windows 7
  • Archive
  • Cloud Computing
  • Virtualization
  • Computer and Internet
  • Digital Photography
  • Android
  • Sysadmin
  • Electronics
  • Big Data
  • Virtualization
  • Downloads
  • Web Development
  • Apple
  • Android
Advertisement
You are here: Home » Temperature Sensor Using NTC Thermistor (Arduino/NTC)

By Abhishek Ghosh October 6, 2020 11:02 am Updated on October 6, 2020

Temperature Sensor Using NTC Thermistor (Arduino/NTC)

Advertisement

A thermistor (THERMally sensitive resISTOR) is an electrical resistance whose value changes with the temperature.
Thermistors are divided into two groups, hot conductors which have a negative temperature coefficient (NTC), conduct electrically in a hot state better than in the cold state and cold conductors, which have a positive temperature coefficient (PTC) and conduct better electrically when cold. Metals, semiconducting metal oxides (ceramic materials) or silicon are used as resistance material, using both positive and negative temperature coefficients, depending on the application.

Thermistors with negative temperature coefficients (NTC) have a high dependence on flaws, such as the doping of the raw materials, due to the underlying semiconductor effect. Processing such as mixing, grinding, pressing, sintering has a major influence on properties and long-term stability. As a result, NTCs have long been only able to produce with highly scattering characteristics, and in their early days, NTCs have earned a reputation for being unsuitable for precise temperature measurement. Their nonlinear behaviour is described by nonlinear equations. The preferred representation of the dependency is given under Resistance Thermometer. Another common representation of the nonlinear relationship is the Steinhart-Hart equation. NTC Thermistors are also used to limit inrush currents to allow a smooth start-up. A hot conductor in the supply line of an electrical device is cold before switching on, conducts at the moment of activation still poorly and limits the inrush current.

10K Ohm resistance NTC thermistors in bead design with wire are commonly used for temperature measurement. They are also used in medical fields to measure body temperature. The DS18B20 (by MAXIM) IC works well for most of the temperature applications. The latest DS18B20 1 wire digital temperature sensor is good for many temperature control projects. 10K Ohm resistance NTC thermistors are a cheap and good thing to try.

Advertisement

---

This is the schematic of a 10K Ohm resistance NTC thermistor with a 10K Ohm resistor :

Temperature Sensor Using NTC Thermistor Arduino NTC

Actually, you need the datasheet to code perfectly :

Vim
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
//Thermometer with thermistor
 
/*thermistor parameters:
* RT0: 10 000 Ω
* B: 3977 K +- 0.75%
* T0:  25 C
* +- 5%
*/
 
//These values are in the datasheet
#define RT0 10000   // Ω
#define B 3977      // K
//--------------------------------------
 
 
#define VCC 5    //Supply voltage
#define R 10000  //R=10KΩ
 
//Variables
float RT, VR, ln, TX, T0, VRT;
 
void setup() {
  Serial.begin(9600);
  T0 = 25 + 273.15;                 //Temperature T0 from datasheet, conversion from Celsius to kelvin
}
 
void loop() {
  VRT = analogRead(A0);              //Acquisition analog value of VRT
  VRT = (5.00 / 1023.00) * VRT;      //Conversion to voltage
  VR = VCC - VRT;
  RT = VRT / (VR / R);               //Resistance of RT
 
  ln = log(RT / RT0);
  TX = (1 / ((ln / B) + (1 / T0))); //Temperature from thermistor
 
  TX = TX - 273.15;                 //Conversion to Celsius
 
  Serial.print("Temperature:");
  Serial.print("\t");
  Serial.print(TX);
  Serial.print("C\t\t");
  Serial.print(TX + 273.15);        //Conversion to Kelvin
  Serial.print("K\t\t");
  Serial.print((TX * 1.8) + 32);    //Conversion to Fahrenheit
  Serial.println("F");
  delay(500);
 
}

Tagged With arduino ntc , thermistance temperature arduino , TEMPERATURE SENSOR NTC , sensor thermistor 10k thermoking , ntc thermistor 10k temperature arduino code , ntc temperature arduino , ntc tdc05c310-5 coefficients , ntc 10k arduino , arudino ntc , термистор ардуино схема

This Article Has Been Shared 820 Times!

Facebook Twitter Pinterest

Abhishek Ghosh

About Abhishek Ghosh

Abhishek Ghosh is a Businessman, Surgeon, Author and Blogger. You can keep touch with him on Twitter - @AbhishekCTRL.

Here’s what we’ve got for you which might like :

Articles Related to Temperature Sensor Using NTC Thermistor (Arduino/NTC)

  • ESP32 Deep Sleep Guide

    ESP32 Deep Sleep is a Complicated Topic, Yet We Tried to Make it Easy Enough to Deploy Deep Sleep in Own Project to Save Battery.

  • Simple Level Shifter With Transistors (3.3V-5V)

    Earlier, we talked about the level shifter. Raspberry Pi, ESP32 etc things operate at 3.3v logic whereas, relay modules usually need near 5v TTL logic level. In our guide to control AC appliances over the internet with ESP32, you will notice that directly connecting the relay with ESP32 will not properly work – it will […]

  • ESP32 Arduino AC Motor Speed Control Module/Circuit

    Here is Some Theory on ESP32 Arduino AC Motor Speed Control Module/Circuit. We Need These Kind of Circuit For IoT to Remotely Control Motor.

  • Samsung Smartwatch as Proximity Switch : Part I

    We Can Use BLE of Samsung Smartwatch to Work as Proximity Switch Created With ESP32 Arduino for Automation of Lights in a Room.

  • Pulse Oximeter with ESP32 and MAX30102

    The MAX30100 IC is an integrated pulse oximetry module two LEDs, a photodetector, optimized optics, and low-noise analogue signal processing designed for the wearable devices and medical devices. The MAX30102 IC is an upgrade to The MAX30100 and The MAX30101 IC. Here is the datasheet of MAX30102 (website of MAXIM). The PDF will give you […]

Additionally, performing a search on this website can help you. Also, we have YouTube Videos.

Take The Conversation Further ...

We'd love to know your thoughts on this article.
Meet the Author over on Twitter to join the conversation right now!

If you want to Advertise on our Article or want a Sponsored Article, you are invited to Contact us.

Contact Us

Subscribe To Our Free Newsletter

Get new posts by email:

Please Confirm the Subscription When Approval Email Will Arrive in Your Email Inbox as Second Step.

Search this website…

 

Popular Articles

Our Homepage is best place to find popular articles!

Here Are Some Good to Read Articles :

  • Cloud Computing Service Models
  • What is Cloud Computing?
  • Cloud Computing and Social Networks in Mobile Space
  • ARM Processor Architecture
  • What Camera Mode to Choose
  • Indispensable MySQL queries for custom fields in WordPress
  • Windows 7 Speech Recognition Scripting Related Tutorials

Social Networks

  • Pinterest (24.3K Followers)
  • Twitter (5.8k Followers)
  • Facebook (5.7k Followers)
  • LinkedIn (3.7k Followers)
  • YouTube (1.3k Followers)
  • GitHub (Repository)
  • GitHub (Gists)
Looking to publish sponsored article on our website?

Contact us

Recent Posts

  • The Importance of Voice and Style in Essay Writing April 1, 2023
  • What Online Casinos Have No Deposit Bonus in Australia March 30, 2023
  • Four Foolproof Tips To Never Run Out Of Blog Ideas For Your Website March 28, 2023
  • The Interactive Entertainment Serving as a Tech Proving Ground March 28, 2023
  • Is it Good to Run Apache Web server and MySQL Database on Separate Cloud Servers? March 27, 2023

About This Article

Cite this article as: Abhishek Ghosh, "Temperature Sensor Using NTC Thermistor (Arduino/NTC)," in The Customize Windows, October 6, 2020, April 1, 2023, https://thecustomizewindows.com/2020/10/temperature-sensor-using-ntc-thermistor-arduino-ntc/.

Source:The Customize Windows, JiMA.in

PC users can consult Corrine Chorney for Security.

Want to know more about us? Read Notability and Mentions & Our Setup.

Copyright © 2023 - The Customize Windows | dESIGNed by The Customize Windows

Copyright  · Privacy Policy  · Advertising Policy  · Terms of Service  · Refund Policy

We use cookies on our website to give you the most relevant experience by remembering your preferences and repeat visits. By clicking “Accept”, you consent to the use of ALL the cookies.
Do not sell my personal information.
Cookie SettingsAccept
Manage consent

Privacy Overview

This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience.
Necessary
Always Enabled
Necessary cookies are absolutely essential for the website to function properly. These cookies ensure basic functionalities and security features of the website, anonymously.
CookieDurationDescription
cookielawinfo-checkbox-analytics11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics".
cookielawinfo-checkbox-functional11 monthsThe cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional".
cookielawinfo-checkbox-necessary11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary".
cookielawinfo-checkbox-others11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other.
cookielawinfo-checkbox-performance11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance".
viewed_cookie_policy11 monthsThe cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data.
Functional
Functional cookies help to perform certain functionalities like sharing the content of the website on social media platforms, collect feedbacks, and other third-party features.
Performance
Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.
Analytics
Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics the number of visitors, bounce rate, traffic source, etc.
Advertisement
Advertisement cookies are used to provide visitors with relevant ads and marketing campaigns. These cookies track visitors across websites and collect information to provide customized ads.
Others
Other uncategorized cookies are those that are being analyzed and have not been classified into a category as yet.
SAVE & ACCEPT