标题: DS1307 RTC时钟芯片实验 [打印本页]

作者: 爱生活学习    时间: 2018-10-11 11:58
标题: DS1307 RTC时钟芯片实验
实验器件 :
Arduino 控制板 1 块、USB 数据线 1 根、面包板 1 块、面包板专用跳线 1 盒、镊子 1 把、DS1307 RTC 模块。

实验电路:


想了解更多创客知识,欢迎加入QQ群:820685901,或关注创客集结号。

实验原理 :
本程序需要用电脑来接收 arduino 传回的数据,需要点击打开串口监视器。

Arduino  代码 :
  1. #include <WProgram.h>
  2. #include <Wire.h>
  3. #include <DS1307.h>
  4. int rtc[7];
  5. int ledPin = 13;
  6. void setup()
  7. {
  8. DDRC|=_BV(2) |_BV(3); // POWER:Vcc Gnd
  9. PORTC |=_BV(3); // VCC PINC3
  10. pinMode(ledPin, OUTPUT);
  11. Serial.begin(9600);
  12. RTC.stop();
  13. RTC.set(DS1307_SEC,1);
  14. RTC.set(DS1307_MIN,57);
  15. RTC.set(DS1307_HR,17);
  16. RTC.set(DS1307_DOW,2);
  17. RTC.set(DS1307_DATE,18);
  18. RTC.set(DS1307_MTH,1);
  19. RTC.set(DS1307_YR,10);
  20. RTC.start();
  21. }
  22. void loop()
  23. {
  24. RTC.get(rtc,true);
  25. for(int i=0; i<7; i++){
  26. Serial.print(rtc[i]);
  27. Serial.print(" ");
  28. }
  29. Serial.println();
  30. digitalWrite(ledPin, HIGH);
  31. delay(500);
  32. digitalWrite(ledPin, LOW);
  33. delay(500);
  34. }
复制代码



作者: redtxd    时间: 2018-10-17 14:09
老师好,怎么通过按钮来设置DS1307的时间呢?谢谢!




欢迎光临 (http://www.51hei.com/bbs/) Powered by Discuz! X3.1