• 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 » What is Thermistor : Basics on Thermistor Using Arduino Project

By Abhishek Ghosh May 21, 2018 10:33 am Updated on May 21, 2018

What is Thermistor : Basics on Thermistor Using Arduino Project

Advertisement

In 1833, Michael Faraday discovered the first NTC thermistor. In high school, you were taught metal couple get bent with temperature. That thing is more old. Here is Basic Theory and Practical Basic Example on Thermistor Using Arduino Project With Circuit Diagram and Code. What is Thermistor? Thermistor is a basic electronic component like LDR, it is also a type of resistor whose resistance is dependent on temperature. In NTC thermistors, the resistance decreases with temperature rise. In PTC thermistors, the resistance increases with temperature rise.

 

What is Thermistor?

 

A thermistor’s operation is based on the variation in the resistivity of a semiconductor with temperature. The term thermistor comes from Thermally Sensitive Resistor. There are two types of thermistor:

NTC (Negative Temperature Coefficient) – negative temperature coefficient
PTC (Positive Temperature Coefficient) – positive temperature coefficient (also called posistor ).

Advertisement

---

When the temperature increases, the PTC type increases its resistance and the NTC decreases it. It is NTC Thermistors which are commonly seen.

The operation is based on the variation of the resistance of the semiconductor due to the change of the ambient temperature. For NTC thermistors, increasing the temperature will increase the concentration of carriers, so the resistance will be lower, hence the coefficient is negative. For PTC thermistors, in the case of a semiconductor with a very intense doping, it will acquire metallic properties, taking a positive coefficient in a limited temperature range. Usually, thermistors are manufactured from semiconductor oxides, such as ferric oxide, nickel oxide, or cobalt oxide. However, unlike RTD sensors, the variation of resistance with temperature is not linear. For an NTC thermistor, the characteristic is hyperbolic. For small increases in temperature, large increases in resistance will occur.

So, for real temperature measurement, DHT 11 like sensors are more sensitive.

NTC thermistors can be used in series with a circuit as an inrush current limiter. PTC thermistors can be used in series to protect against overcurrent like in resettable fuses. These are their actual usage.

 

Basics on Thermistor Using Arduino Project

 

If you are seeking for Thermistor Using Arduino Project, then you are probably seeking using thermistor as temperature sensor with Arduino. NTC thermistors like 102 NTC thermistor commonly sold and used. Michael Faraday not thought of Arduino! The circuit diagram and code is like any similar basic electronic component, like LDR. Thermistor is better to say HEAT DETECTOR than temperature detector. Of course we can use thermistor in complex Arduino projects as “safety valve”, like in real life.

Our example is for using it with Arduino to watch the serial monitor of Arduino IDE. We have to use a 10K resistor with 102 NTC thermistor as voltage divider, like we used in LDR projects :

What is Thermistor Basics on Thermistor Using Arduino Project

This is example code :

Vim
1
2
3
4
5
6
7
8
9
int thermistorPin = A0;
void setup(){
Serial.begin(9600);
}
void loop(){
int thermistorReading = analogRead(thermistorPin);
Serial.println(thermistorReading);
delay(250);
}

Thermistor can be used in Arduino project to create an unit for refrigerator which will send text message or message via WiFi dipped inside a fluid – like to be ice-cream (wrapped inside plastic sheet). If temperature is minus 4 degrees for 1 hour then ready like logic. Because thermistor unlike DTH 11 will not die in such torture.

Tagged With thermistor basics , thermistor using arduino , arduino thermistor code , thermistor arduino , thermistor thermistor with , what is a thermister tutorials

This Article Has Been Shared 281 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 What is Thermistor : Basics on Thermistor Using Arduino Project

  • Arduino Programming Language Tutorial

    Arduino Programming Language Tutorial Explains Where From That “Language” Originated and Why We Talk About Writing Codes in C++, C Language.

  • Common PNP, NPN Transistors For Arduino, Raspberry Pi Projects

    Here is Kind of List of Common PNP, NPN Transistors For Arduino, Raspberry Pi Projects for the Beginners. Also We Will Discuss Basics Around Transistors.

  • Difference Between Analog and Digital Pins in Arduino UNO

    We Have Discussed the Difference Between Analog and Digital Pins in Arduino UNO in Plain English Suitable For Any Audience.

  • Arduino : Light ON One By One Following Foot Steps on Hallway

    This idea is good for automatic turning on and off multiple lights one by one while a person is walking staircase or walking through a passage or hallway. As IR Obstacle Sensors has physical limits, we can not use if the passage is wide like a road – it will fail for physical reasons. Human […]

  • Graphical LCD (GLCD) Buying Guide For Arduino

    Graphical LCD Actually Practical Over 16×2 LCDs. Here is Graphical LCD (GLCD) Buying Guide For Arduino as There Are Matters to Know Like Drivers.

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 (22.1K 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

  • How Artificial Intelligence (AI) Is Changing The Way We Play Bingo May 16, 2022
  • Why You Need A Big Data Consultant May 15, 2022
  • The Connection Between AI And Online Slots May 13, 2022
  • How To Choose Your Niche As An Instagram Influencer May 12, 2022
  • How to Choose a Powerful Domain Name for Your New Venture May 12, 2022

About This Article

Cite this article as: Abhishek Ghosh, "What is Thermistor : Basics on Thermistor Using Arduino Project," in The Customize Windows, May 21, 2018, May 16, 2022, https://thecustomizewindows.com/2018/05/what-is-thermistor-basics-on-thermistor-using-arduino-project/.

Source:The Customize Windows, JiMA.in

This website uses cookies. If you do not want to allow us to use cookies and/or non-personalized Ads, kindly clear browser cookies after closing this webpage.

Read Privacy Policy.

PC users can consult Corrine Chorney for Security.

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

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

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