LM35DZ 온도센서(TEMP SENSOR)
아두이노 예제 소스는 아래와 같습니다.
#include void setup() { //Set Baud Rate to 9600 bps Serial.begin(9600); } void loop() { int adcValue; int tempData; // Connect LM35 on Analog 0 adcValue=analogRead(0); tempData = (500*adcValue)>>10; // Display the temperature to Serial monitor Serial.print("Temp:"); Serial.print(tempData); Serial.println("C"); delay(500); }