RTC 1307

来自YFRobotwiki
2020年12月23日 (三) 13:40Allblue讨论 | 贡献的版本

跳转至: 导航搜索
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(信号)


应用示例


电路连接

LM35模块的 G、V、S分别连接 Arduino UNO的GND、VCC(+5V)、A0引脚。

电路连接示意图

生成缩略图出错:文件可能丢失:


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