RTC 1307

從 YFRobotwiki
在2020年12月23日 (三) 13:41由Allblue對話 | 貢獻所做的修訂版本

跳到: 導覽搜尋
RTCDS1307模塊


產品簡介


RTC-DS1307時鐘模塊是一款基於I2C接口的實時時鐘芯片DS1307而設計的模塊,可用來計時。


規格參數


  • 供電電壓:DC5V
  • 精度:0.5℃ (在+25℃時)
  • 靈敏度:10mV/℃
  • 工作溫度:0℃~70℃
  • 安裝孔徑:3MM
  • 模塊尺寸:28*21*9.5MM (長*寬*高)
  • 孔間距:15MM
  • 模塊重量:2.3g


引腳說明


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


應用示例


電路連接

RTCDS1307時鐘模塊 Arduino UNO
VCC +5V
GND GND
SDA SDA/A4
SCL SCL/A5

電路連接示意圖

創建縮圖錯誤: 檔案似乎遺失:


示例代碼
//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 電子工作室