Arduino 串口输出LM35温度

#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); 
  }
  
}

 

转载于:https://www.cnblogs.com/nightnine/p/6536671.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值