RTC 1307

出自YFRobotwiki
在2020年12月23日 (三) 09:49由Allblue對話 | 貢獻所做的修訂版本

跳轉到: 導覽搜尋
RTCDS1307模塊


產品簡介


溫度傳感器 - LM35模塊是基於由美國國家半導體公司生產的線性半導體溫度傳感器而設計的模塊,可用來對環境溫度進行檢測。


規格參數


  • 供電電壓:DC3.3V~5V
  • 輸出信號:模擬
  • 溫度測量範圍:0℃~100℃
  • 精度:0.5℃ (在+25℃時)
  • 靈敏度:10mV/℃
  • 安裝孔徑:3MM
  • 模塊尺寸:28*21*9.5MM (長*寬*高)
  • 孔間距:15MM
  • 模塊重量:2.3g


引腳說明


  • 1. G -- Gnd(地)
  • 2. V -- Vcc(電源+5V)
  • 3. S -- Sign(信號)


應用示例


電路連接

LM35模塊的 G、V、S分別連接 Arduino UNO的GND、VCC(+5V)、A0引腳。

電路連接示意圖

溫度傳感器LM35


示例代碼
//thermometer - Measuring temperature, record temperature fluctuations
 
int lm35Pin = A0;
 
int temp = 0;
int tempMin = 100;
int tempMax = -100;
 
void setup() {
  // put your setup code here, to run once:
  Serial.begin(9600);
}
 
void loop() {
  // put your main code here, to run repeatedly:
  for (int i = 0; i <= 9; i++) {
    int signVal = analogRead(lm35Pin);
    temp += (signVal * 5 * 100) / 1024;
    signVal = 0;
    delay(80);
  }
  temp = temp / 10;
 
  if (temp > tempMax) {
    tempMax = temp;
  }
  if (temp < tempMin) {
    tempMin = temp;
  }
 
  Serial.print("Temp:");
  Serial.print(temp);
  Serial.print(" Cels,");
  Serial.print(" Min:");
  Serial.print(tempMin);
  Serial.print(" Max:");
  Serial.println(tempMax);
  temp = 0;
  delay(500);
}

程序下載地址:thermometer


串口監視結果


LM35串口監視結果

參考資料





返回首頁

更多建議和問題歡迎反饋至 YFRobot論壇

購買方式:YFRobot 電子工作室


Arduino 庫

RTC DS1307 DS3231庫

參考文檔





返回首頁

更多建議和問題歡迎反饋至 YFRobot論壇

購買方式:YFRobot 電子工作室