Wish List 0

Ntc Thermistor Temperature Sensor Module

Rs. 29.00 Rs. 34.00

NTC Thermistor temperature sensor module is low cost, small size module.

It is very sensitive to ambient temperature. It is generally used to detect the temperature of the surrounding environment.

Through potentiometer adjustment, it is possible to change the temperature detection threshold.

DO output can be directly connected to the microcontroller to detect high and low, by detecting temperature changes in the environment.

The temperature detection range of the module is between 20 and 80 degrees Celsius.

This module can be replaced with a line temperature sensor for controlling the water temperature, water tank, etc.

Generally, the 4 wire method of thermistor measurement is the most accurate because there is effectively no current flowing in either of the measurement cable wires and therefore no added resistance due to the cable wires.



SPECIFICATIONS
Operating voltage (v)            3.3 ~ 5
Temperature sense range (°C)    -25 ~ +80
Output Type                      Both Analog and Digital
Voltage Comparator               LM393
Shipment Weight                  0.105 kg
Shipment Dimensions              8 × 6 × 4 cm

OVERVIEW:

NTC Thermistor temperature sensor module is low cost, small size module.

It is very sensitive to ambient temperature.

It is generally used to detect the temperature of the surrounding environment.

PACKAGE INCLUDES:

1 PCS x Ntc Thermistor 10K Temperature Sensor


//SOURCE CODE TAKEN FROM BELOW LINK

//https://www.instructables.com/Thermistor-Sensor-Module-Interface-With-Arduino/

void setup()

{

  Serial.begin(9600);

}


void loop()

{

  unsigned int AnalogValue;

  AnalogValue = analogRead(0);

  Serial.println(AnalogValue);

  delay(1000);

}


15 days 

Write a review

Please login or register to review