The shipping fee depends on your address
Standard: 9-15 business days,fee is down to $3.99
Express: 4-7 business days,fee is down to $5.99
WE'RE READY TO BUILD A CUSTOM PRODUCT FOR YOU.
If you're looking for a custom product, we can help. Kindly contact us via email support@keszoox.com and send us the details for your need, then we'll let you know how we can deliver the right solution.We make into production usually Within 1 - 3 Bussiness Days.
Expect customization orders.Module uses an NTC thermistor to measure temperature and provide an analog output.
The Thermistor Temperature Sensor Module uses and NTC thermistor to measure temperature and provides and analog output.
This module utilizes an NTC thermistor for measuring temperature. The output is normally input into an analog port on a uC where it can be read and the temperature calculated.
Thermistors are essentially resistors whose resistance value changes with changes in temperature. NTC stands for ‘Negative Temperature Coefficient which means that the sensor resistance will decrease as temperature increases.
The thermistor is in series with an 10K resistor which creates a voltage divider. As the thermistor warms up, the resistance lowers and the analog output increases towards Vcc.
The sensor is capable of reading temperature in the range of -55 to +125°C with an accuracy of +/- 0.5°C.
The module has a 3-pin header on the assembly for connections. The ‘-‘ pin is connected to GND, the center pin is connected to Vcc and the ‘S’ pin is connected to an analog input pin on the uC. If the output goes in the wrong direction i.e. resistance goes up as temperature goes up, reverse the power and ground pins.
1 x 3 Header
This is a commonly used module for basic temperature measurement. Once up and running with a uC, it is easy to test the module by using the fingers to warm the sensor and monitor the output.
Using the device requires some math to convert from the voltage output to the temperature. In our own test code, we use the Beta method for temperature calculation, but there are several different formulas that can be used. The nice thing about the Beta method is that you can measure your component values and enter them into the fields if your sensor is constructed a little different.
The most difficult part is calculating the Beta value which is in the datasheet if you are using a fully spec’d part. If the part is unknown, as is the case with most of these types of modules, you can calculate it. This link is for a handy Beta Calculator where you measure the resistance of the thermistor at 2 different temperatures and it will give you the Beta value.
To use this program, you will need several values or measurements to plug into the program:
We are bringing the sensor output into the A0 analog input pin, but this can be changed to any convenient analog input.
/* NTC Thermistor module test Basic code for reading the output of the thermistor module. It uses the Beta method of calculating the temperature. Beta # determined using on-line calculator and measuring 2 thermistor resistances over different temps. */ const double BALANCE_RESISTOR = 10010.0; // Measured value of on-board divider resistor const double MAX_ADC = 1023.0; // Max number of ADC steps (10-bit in this case) const double BETA = 4242.0; // Beta value (from datasheet or calculated) const double ROOM_TEMP = 292.75; // room ambient temperature in Kelvin const double RESISTOR_ROOM_TEMP = 125000.0; // Measured value of thermistor at room temp double currentTemperature = 0; // Variable to hold measured temperature int thermistorPin = A0; // ADC pin on Arduino (Mega2560 in this case) //=============================================================================== // Initialization //=============================================================================== void setup() { Serial.begin(9600); // Set comm speed for debug window messages } //=============================================================================== // Main //=============================================================================== void loop() { currentTemperature = readThermistor(); Serial.print("Current Temp is "); Serial.print(currentTemperature); Serial.print("C / "); Serial.print(currentTemperature * 9 / 5 +32); Serial.println("F"); delay(3000); } //=============================================================================== // Functions //=============================================================================== double readThermistor() { // Local Variables double rThermistor = 0; // Thermistor resistance value double tKelvin = 0; // Calculated temperature in Kelvin double tCelsius = 0; // Calculated temperature in celsius int adcSample = 0; // ADC measurement adcSample = analogRead(thermistorPin); // read from pin and store rThermistor = BALANCE_RESISTOR * ( (MAX_ADC / adcSample) - 1); tKelvin = (BETA * ROOM_TEMP) / (BETA + (ROOM_TEMP * log(rThermistor / RESISTOR_ROOM_TEMP))); tCelsius = tKelvin - 273.15; // convert kelvin to celsius return tCelsius; // Return the temperature in Celsius }
Before they are shipped, these modules are:
Notes:
Maximum Ratings | ||
Vcc | 5V | |
Operating Ratings | ||
Temperature | -55 to +125°C (+/- 0.5°C) | |
Dimensions | L x W (PCB) | 19 x 16mm (0.75 x 0.6″) |
WE'RE READY TO BUILD A CUSTOM PRODUCT FOR YOU.
All orders are dispatched from our warehouse. The shipments are fully tracked—from our door to yours. Please allow 3-5 business days for your order to be processed in addition to the shipping times below.
Standard: 9-15 business days. Express: 4-7 business days.
Please note that shipping providers are extremely busy during this time, and some orders might experience a delay on top of usual delivery times. If your order is late, please allow 5-10 days more than indicated in standard shipping times before contacting our customer service. Thank you for your understanding.
All orders are 100% tracked. You’ll receive an email with a tracking number and a link to track your parcel once your order leaves our warehouse. Please allow 24-48 hours for the tracking link to start showing shipping information.
Receive our latest updates about our products & promotions.
Thanks for subscribing!
This email has been registered!