|
實驗器件 :
Arduino 控制板 1 塊、USB 數據線 1 根、面包板 1 塊、面包板專用跳線 1 盒、鑷子 1 把、DS1307 RTC 模塊。
實驗電路:
DS1307 RTC時鐘芯片.png (65.62 KB, 下載次數: 105)
下載附件
創客集結號
2018-10-11 11:58 上傳
想了解更多創客知識,歡迎加入QQ群:820685901,或關注創客集結號。
實驗原理 :
本程序需要用電腦來接收 arduino 傳回的數據,需要點擊打開串口監視器。
Arduino 代碼 :
- #include <WProgram.h>
- #include <Wire.h>
- #include <DS1307.h>
- int rtc[7];
- int ledPin = 13;
- void setup()
- {
- DDRC|=_BV(2) |_BV(3); // POWER:Vcc Gnd
- PORTC |=_BV(3); // VCC PINC3
- pinMode(ledPin, OUTPUT);
- Serial.begin(9600);
- RTC.stop();
- RTC.set(DS1307_SEC,1);
- RTC.set(DS1307_MIN,57);
- RTC.set(DS1307_HR,17);
- RTC.set(DS1307_DOW,2);
- RTC.set(DS1307_DATE,18);
- RTC.set(DS1307_MTH,1);
- RTC.set(DS1307_YR,10);
- RTC.start();
- }
- void loop()
- {
- RTC.get(rtc,true);
- for(int i=0; i<7; i++){
- Serial.print(rtc[i]);
- Serial.print(" ");
- }
- Serial.println();
- digitalWrite(ledPin, HIGH);
- delay(500);
- digitalWrite(ledPin, LOW);
- delay(500);
- }
復制代碼
|
|