mirror of
https://github.com/RobTillaart/Arduino.git
synced 2024-10-03 18:09:02 -04:00
45 lines
762 B
C++
45 lines
762 B
C++
//
|
|
// FILE: demo_DHMS.ino
|
|
// AUTHOR: Rob Tillaart
|
|
// VERSION: 0.1.0
|
|
// PURPOSE: demo
|
|
// DATE: 2017-07-16
|
|
// URL: http://forum.arduino.cc/index.php?topic=356253
|
|
// https://github.com/RobTillaart/CountDown
|
|
//
|
|
|
|
|
|
#include "CountDown.h"
|
|
|
|
CountDown CD;
|
|
|
|
|
|
void setup()
|
|
{
|
|
Serial.begin(115200);
|
|
Serial.println(__FILE__);
|
|
Serial.print("COUNTDOWN_LIB_VERSION: ");
|
|
Serial.println(COUNTDOWN_LIB_VERSION);
|
|
|
|
// countdown 1 minute
|
|
CD.start(0, 0, 1, 0);
|
|
}
|
|
|
|
|
|
void loop()
|
|
{
|
|
static uint32_t last_remaining = 0;
|
|
if (last_remaining != CD.remaining() || CD.remaining() == 0 )
|
|
{
|
|
Serial.println();
|
|
last_remaining = CD.remaining();
|
|
}
|
|
Serial.print('\t');
|
|
Serial.print(CD.remaining());
|
|
delay(250);
|
|
}
|
|
|
|
|
|
// -- END OF FILE --
|
|
|