Ky 013 Analog Temperature Sensor Module
Rs. 26.00 Rs. 32.00
- 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
-The KY-013 Analog Temperature Sensor 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.
Features:
Operating Voltage | 5v. |
Temperature measurement range | -55C to 125C. |
Measurement Accuracy | 0.5C. |
SPECIFICATIONS: |
-The KY-013 Analog Temperature Sensor module consist of a NTC thermistor and a 10 kΩ resistor.
-The resistance of the thermistor varies with surrounding temperature, we'll use the Steinhart–Hart equation to derive precise temperature of the thermistor.
Operating | Voltage5V |
Temperature measurement range | -55°C to 125°C [-67°F to 257°F] |
Measurement Accuracy | ±0.5°C |
Length (mm) | 24.5 |
Width (mm) | 16 |
Height (mm) | 7 |
Weight (gm) | 1 |
OVERVIEW: | |
Operating | Voltage5V |
Temperature measurement range | -55°C to 125°C [-67°F to 257°F] |
Measurement Accuracy | ±0.5°C |
PACKAGE INCLUDES:
1 PCS x Ky 013 Analog Temperature Sensor Module
//SOURCE CODE TAKEN FROM BELOW LINK
//https://arduinomodules.info/ky-013-analog-temperature-sensor-module/
int ThermistorPin = A0;
int Vo;
float R1 = 10000; // value of R1 on board
float logR2, R2, T;
float c1 = 0.001129148, c2 = 0.000234125, c3 = 0.0000000876741; //steinhart-hart coeficients for thermistor
void setup() {
Serial.begin(9600);
}
void loop() {
Vo = analogRead(ThermistorPin);
R2 = R1 * (1023.0 / (float)Vo - 1.0); //calculate resistance on thermistor
logR2 = log(R2);
T = (1.0 / (c1 + c2*logR2 + c3*logR2*logR2*logR2)); // temperature in Kelvin
T = T - 273.15; //convert Kelvin to Celcius
// T = (T * 9.0)/ 5.0 + 32.0; //convert Celcius to Farenheit
Serial.print("Temperature: ");
Serial.print(T);
Serial.println(" C");
delay(500);
}
15 days