The Analog Temperature Module is based on the thermistor (resistance increases with the ambient temperature changes) which sense the real-time temperature of the surrounding environment changes. Change in temperature data in analog form can be taken from this module on analog IO pins, then through any microcontroller, it can be easily converted and displayed in Celsius degrees or any other respective Unit.
Test Code:
double Thermister(int RawADC)
double Temp;
Temp = log(((10240000/RawADC) – 10000));
Temp = 1 / (0.001129148 + (0.000234125 + (0.0000000876741 * Temp * Temp ))* Temp );
Temp = Temp – 273.15;// Convert Kelvin to Celcius
return Temp;
}
void setup() {
Serial.begin(9600);
}
void loop() {
Serial.print(Thermister(analogRead(0)));
Serial.println(“c”);
delay(500);
}
Features:
- Operating Voltage: 5v.
- Temperature measurement range : -55°C to 125°C.
- Measurement Accuracy : ±0.5°C.
Package Includes:
1 x Analog Temperature Module.
Shipping & Returns
Due to the type of products we sell, we accept limited returns. Below are the conditions where we can accept a return request.
MANUFACTURING DEFECT
If you receive a product with a manufacturing defect, please notify us within 1 day of receiving the product, supported by the proper pictures and description. Once our support team accept the return, we will provide a replacement or a complete refund including the return shipping cost.
WRONG ITEM SHIPPED
If you receive a different product than the ordered one, please contact us within 1 day of receiving the product, supported by the proper pictures and description. Once our support team accept the return, we will provide a replacement or a complete refund including the return shipping cost.
LIMITATION OF RETURNS
We don’t accept returns for products damaged by improper use of the product. Moreover, we don’t accept the return if the ordered product is unsuitable for any specific application. Please read the product specifications and datasheet before selecting and ordering a product.
WHAT VOID WARRANTY?
If the product is subject to misuse, tampering, static discharge, accident, water or fire damage, use of chemicals & soldered or altered in any way.
SHIPPING
We ship all over India. Please contact our support team at info@inventkart.com for any questions related to shipping.
There are no reviews yet.