forked from PaulStoffregen/Time
Fix compiler error and generally clean up TimeRTCLog example
This commit is contained in:
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* TimeRTCLogger.pde
|
* TimeRTCLogger.ino
|
||||||
* example code illustrating adding and subtracting Time.
|
* example code illustrating adding and subtracting Time.
|
||||||
*
|
*
|
||||||
* this sketch logs pin state change events
|
* this sketch logs pin state change events
|
||||||
@ -18,7 +18,7 @@ time_t prevEventTime[nbrInputPins] ; // the time of the previous event
|
|||||||
void setup() {
|
void setup() {
|
||||||
Serial.begin(9600);
|
Serial.begin(9600);
|
||||||
setSyncProvider(RTC.get); // the function to sync the time from the RTC
|
setSyncProvider(RTC.get); // the function to sync the time from the RTC
|
||||||
for(int i=0; i < nbrInputPins; i++){
|
for (int i=0; i < nbrInputPins; i++) {
|
||||||
pinMode( inputPins[i], INPUT);
|
pinMode( inputPins[i], INPUT);
|
||||||
// uncomment these lines if pull-up resistors are wanted
|
// uncomment these lines if pull-up resistors are wanted
|
||||||
// pinMode( inputPins[i], INPUT_PULLUP);
|
// pinMode( inputPins[i], INPUT_PULLUP);
|
||||||
@ -28,17 +28,16 @@ void setup() {
|
|||||||
|
|
||||||
void loop()
|
void loop()
|
||||||
{
|
{
|
||||||
for(int i=0; i < nbrInputPins; i++)
|
for (int i=0; i < nbrInputPins; i++) {
|
||||||
{
|
|
||||||
boolean val = digitalRead(inputPins[i]);
|
boolean val = digitalRead(inputPins[i]);
|
||||||
if(val != state[i])
|
if (val != state[i]) {
|
||||||
{
|
|
||||||
time_t duration = 0; // the time since the previous event
|
time_t duration = 0; // the time since the previous event
|
||||||
state[i] = val;
|
state[i] = val;
|
||||||
time_t timeNow = now();
|
time_t timeNow = now();
|
||||||
if(prevEventTime[i] > 0)
|
if (prevEventTime[i] > 0) {
|
||||||
// if this was not the first state change, calculate the time from the previous change
|
// if this was not the first state change, calculate the time from the previous change
|
||||||
duration = duration = timeNow - prevEventTime[i];
|
duration = timeNow - prevEventTime[i];
|
||||||
|
}
|
||||||
logEvent(inputPins[i], val, timeNow, duration ); // log the event
|
logEvent(inputPins[i], val, timeNow, duration ); // log the event
|
||||||
prevEventTime[i] = timeNow; // store the time for this event
|
prevEventTime[i] = timeNow; // store the time for this event
|
||||||
}
|
}
|
||||||
@ -49,12 +48,13 @@ void logEvent( int pin, boolean state, time_t timeNow, time_t duration)
|
|||||||
{
|
{
|
||||||
Serial.print("Pin ");
|
Serial.print("Pin ");
|
||||||
Serial.print(pin);
|
Serial.print(pin);
|
||||||
if( state == HIGH)
|
if (state == HIGH) {
|
||||||
Serial.print(" went High at ");
|
Serial.print(" went High at ");
|
||||||
else
|
} else {
|
||||||
Serial.print(" went Low at ");
|
Serial.print(" went Low at ");
|
||||||
|
}
|
||||||
showTime(timeNow);
|
showTime(timeNow);
|
||||||
if(duration > 0){
|
if (duration > 0) {
|
||||||
// only display duration if greater than 0
|
// only display duration if greater than 0
|
||||||
Serial.print(", Duration was ");
|
Serial.print(", Duration was ");
|
||||||
showDuration(duration);
|
showDuration(duration);
|
||||||
@ -63,7 +63,8 @@ void logEvent( int pin, boolean state, time_t timeNow, time_t duration)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void showTime(time_t t){
|
void showTime(time_t t)
|
||||||
|
{
|
||||||
// display the given time
|
// display the given time
|
||||||
Serial.print(hour(t));
|
Serial.print(hour(t));
|
||||||
printDigits(minute(t));
|
printDigits(minute(t));
|
||||||
@ -84,19 +85,20 @@ void printDigits(int digits){
|
|||||||
Serial.print(digits);
|
Serial.print(digits);
|
||||||
}
|
}
|
||||||
|
|
||||||
void showDuration(time_t duration){
|
void showDuration(time_t duration)
|
||||||
// prints the duration in days, hours, minutes and seconds
|
{
|
||||||
if(duration >= SECS_PER_DAY){
|
// prints the duration in days, hours, minutes and seconds
|
||||||
|
if (duration >= SECS_PER_DAY) {
|
||||||
Serial.print(duration / SECS_PER_DAY);
|
Serial.print(duration / SECS_PER_DAY);
|
||||||
Serial.print(" day(s) ");
|
Serial.print(" day(s) ");
|
||||||
duration = duration % SECS_PER_DAY;
|
duration = duration % SECS_PER_DAY;
|
||||||
}
|
}
|
||||||
if(duration >= SECS_PER_HOUR){
|
if (duration >= SECS_PER_HOUR) {
|
||||||
Serial.print(duration / SECS_PER_HOUR);
|
Serial.print(duration / SECS_PER_HOUR);
|
||||||
Serial.print(" hour(s) ");
|
Serial.print(" hour(s) ");
|
||||||
duration = duration % SECS_PER_HOUR;
|
duration = duration % SECS_PER_HOUR;
|
||||||
}
|
}
|
||||||
if(duration >= SECS_PER_MIN){
|
if (duration >= SECS_PER_MIN) {
|
||||||
Serial.print(duration / SECS_PER_MIN);
|
Serial.print(duration / SECS_PER_MIN);
|
||||||
Serial.print(" minute(s) ");
|
Serial.print(" minute(s) ");
|
||||||
duration = duration % SECS_PER_MIN;
|
duration = duration % SECS_PER_MIN;
|
||||||
|
Reference in New Issue
Block a user