Temperature Analog Sensor Module LM35D
- Was RM15.00
-
RM10.00
- Product Code: LM35D module
- Availability: In Stock
The Arduino LM35 Linear Temperature Sensor module is based on the semiconductor LM35 temperature sensor. The LM35 Linear Temperature Sensor module can be used to detect ambient air temperature. Sensitivity is 10mV per degree Celsius. The output voltage is proportional to the temperature.It is commonly used as a temperature measurement sensors. It includes thermocouples, platinum resistance, thermal resistance and temperature semiconductor chips, which commonly used in high-temperature measurement thermocouples. The LM35 linear temperature sensor and sensor-specific expansion of Arduino board, in combination, can be very easy to achieve.
Features
Specifications
VCC - 5V GND - GND S - Analog pin0
Arduino Sketch
int potPin = 0; float temperature = 0; long val=0; void setup() { Serial.begin(9600); } void loop() { val=analogRead(potPin); temperature = (val*0.0048828125*100); Serial.print("Tep= "); Serial.print(temperature); Serial.println(" C"); delay(500); }
Tags: Temperature, LM35