ソフトウェア開発の実際(3)

シールド#2のデータロガーシールドのテスト用スケッチです。

===sketch_apr25b_rtc

// Date and time functions using a DS1307 RTC connected via I2C and Wire lib
#include <Wire.h>
#include “RTClib.h”
RTC_DS1307 RTC;
void setup () {
Serial.begin(57600);
Wire.begin();
RTC.begin();
if (! RTC.isrunning()) {
Serial.println(“RTC is NOT running!”);
// following line sets the RTC to the date & time this sketch was compiled
// uncomment it & upload to set the time, date and start run the RTC!
//RTC.adjust(DateTime(__DATE__, __TIME__));
}
}

void loop () {
DateTime now = RTC.now();

Serial.print(now.year(), DEC);
Serial.print(‘/’);
Serial.print(now.month(), DEC);
Serial.print(‘/’);
Serial.print(now.day(), DEC);
Serial.print(‘ ‘);
Serial.print(now.hour(), DEC);
Serial.print(‘:’);
Serial.print(now.minute(), DEC);
Serial.print(‘:’);
Serial.print(now.second(), DEC);
Serial.println();
Serial.println();
delay(2000);
}

===

初めて動かすとき、RTC.adjust(…の部分のコメントを外してコンパイル&ゴーでRTCに正しい時刻を植え付ける必要があります。次にコメントアウトしてコンパイル&ゴーすれば今度は正しい時刻が表示されるはずです。

 

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です