GY-63_MS5611/libraries/CountDown/examples/demo_DHMS/demo_DHMS.ino
2021-10-19 21:40:11 +02:00

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 --