#include "stdlib.h"
float temp = 0.0;
float maxtemp = 0.0;
float mintemp =100.0;

// the setup routine runs once when you press reset:
void setup() {
Serial.begin(9600); 
Serial.println(F("reading temperature begin. \n")); 

}

// the loop routine runs over and over again forever:
void loop() {
 
  static unsigned long sensortStamp = 0;
  
  if(millis() - sensortStamp > 1000){
    sensortStamp = millis();
    // read the LM35 sensor value and convert to the degrees every 100ms.
  
    int reading = analogRead(0); //把LM35的输出端连接到了A0,所以这里是analogRead(0)
    temp = reading *0.0048828125*100;
    if(temp >= maxtemp)
      maxtemp = temp;
    if(temp <= mintemp)
       mintemp = temp;
    Serial.print(F("Real Time Temp: ")); 
    Serial.print(temp);
    Serial.print(F(" Max Temp: ")); 
    Serial.print(maxtemp);
    Serial.print(F("  Min Temp: ")); 
    Serial.println(mintemp); 
  }
  
}

 

相关文章:

  • 2021-11-17
  • 2021-11-17
  • 2021-08-22
  • 2022-12-23
  • 2021-10-06
  • 2021-09-10
  • 2021-08-20
  • 2022-03-02
猜你喜欢
  • 2021-04-15
  • 2021-09-16
  • 2021-12-04
  • 2021-12-16
  • 2022-12-23
  • 2022-12-23
  • 2021-10-18
相关资源
相似解决方案