Ntc Thermistor Temperature Sensor Module
Rs. 29.00 Rs. 34.00
- Brand: https://www.vishay.com/thermistors/ntc/
- Product Code: SEN-TEMP
- SKU -
- Availability: In Stock
- For Bulk Order 9962060070
Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
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
https://www.vishay.com/thermistors/ntc/
//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