GY-63_MS5611/libraries/CountDown/examples/demo_DHMS/demo_DHMS.ino
2020-11-27 11:10:47 +01:00

38 lines
717 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
//
// Released to the public domain
//
#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);
}