码迷,mamicode.com
首页 > 其他好文 > 详细

Arduino 串口输出LM35温度

时间:2017-03-12 01:14:42      阅读:439      评论:0      收藏:0      [点我收藏+]

标签:serial   out   amp   lis   time   nal   oid   div   clu   

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

 

Arduino 串口输出LM35温度

标签:serial   out   amp   lis   time   nal   oid   div   clu   

原文地址:http://www.cnblogs.com/nightnine/p/6536671.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!