GY-63_MS5611/libraries/CountDown/examples/countdown_setResolution/countdown_setResolution.ino

46 lines
831 B
Arduino
Raw Normal View History

2021-05-28 07:17:38 -04:00
//
// FILE: countdown_setResolution.ino
// AUTHOR: Rob Tillaart
// VERSION: 0.1.0
// PURPOSE: demo
// DATE: 2021-05-26
// URL: http://forum.arduino.cc/index.php?topic=356253
// https://github.com/RobTillaart/CountDown
//
2021-10-19 15:40:11 -04:00
2021-05-28 07:17:38 -04:00
#include "CountDown.h"
CountDown CD;
2021-10-19 15:40:11 -04:00
2021-05-28 07:17:38 -04:00
void setup()
{
Serial.begin(115200);
Serial.println(__FILE__);
Serial.print("COUNTDOWN_LIB_VERSION: ");
Serial.println(COUNTDOWN_LIB_VERSION);
CD.setResolution(CountDown::MINUTES);
// countdown 1 minutes
CD.start(1);
}
2021-10-19 15:40:11 -04:00
2021-05-28 07:17:38 -04:00
void loop()
{
static uint32_t last_remaining = 0;
if (last_remaining != CD.remaining() || CD.remaining() == 0 )
{
Serial.println();
last_remaining = CD.remaining();
}
Serial.print(' ');
Serial.print(CD.remaining());
delay(5000); // every 5 seconds
}
2021-10-19 15:40:11 -04:00
// -- END OF FILE --