mirror of
https://github.com/RobTillaart/Arduino.git
synced 2024-10-03 18:09:02 -04:00
09a7c469a8
+ cont() ==> continue countdown + update + add examples
92 lines
1.7 KiB
C++
92 lines
1.7 KiB
C++
//
|
|
// FILE: CountDown.cpp
|
|
// AUTHOR: Rob Tillaart
|
|
// VERSION: 0.1.2
|
|
// PURPOSE: CountDown library for Arduino
|
|
//
|
|
// The library is based upon millis() and therefore
|
|
// has the same restrictions as millis() has wrt overflow.
|
|
//
|
|
// HISTORY:
|
|
// 0.1.2 - 2017-07-16 added start(days, hours, minutes, seconds) + cont() == continue countdown
|
|
// 0.1.1 - 2015-10-29 added start(h, m, s)
|
|
// 0.1.0 - 2015-10-27 initial version
|
|
//
|
|
// Released to the public domain
|
|
//
|
|
|
|
#include "CountDown.h"
|
|
|
|
CountDown::CountDown(const enum Resolution res)
|
|
{
|
|
setResolution(res);
|
|
stop();
|
|
}
|
|
|
|
void CountDown::setResolution(const enum Resolution res)
|
|
{
|
|
_res = res;
|
|
switch(_res)
|
|
{
|
|
case MICROS:
|
|
_gettime = micros;
|
|
break;
|
|
case SECONDS:
|
|
_gettime = seconds;
|
|
break;
|
|
case MILLIS:
|
|
default:
|
|
_gettime = millis;
|
|
break;
|
|
}
|
|
_ticks = 0;
|
|
}
|
|
|
|
void CountDown::start(uint32_t ticks)
|
|
{
|
|
_state = CountDown::RUNNING;
|
|
_starttime = _gettime();
|
|
_ticks = ticks;
|
|
}
|
|
|
|
void CountDown::start(uint8_t days, uint8_t hours, uint8_t minutes, uint8_t seconds)
|
|
{
|
|
uint32_t ticks = 86400UL * days + 3600UL * hours + 60UL * minutes + seconds;
|
|
if (ticks > 4294967) ticks = 4294967; // prevent underlying millis() overflow
|
|
setResolution(SECONDS);
|
|
start(ticks);
|
|
}
|
|
|
|
void CountDown::stop()
|
|
{
|
|
calcRemaining();
|
|
_state = CountDown::STOPPED;
|
|
}
|
|
|
|
void CountDown::cont()
|
|
{
|
|
if (_state == CountDown::STOPPED)
|
|
{
|
|
start(_remaining);
|
|
}
|
|
}
|
|
|
|
uint32_t CountDown::remaining()
|
|
{
|
|
calcRemaining();
|
|
return _remaining;
|
|
}
|
|
|
|
void CountDown::calcRemaining()
|
|
{
|
|
if (_state == CountDown::RUNNING)
|
|
{
|
|
uint32_t t = _gettime() - _starttime;
|
|
_remaining = _ticks > t? _ticks - t: 0;
|
|
if (_remaining == 0)
|
|
{
|
|
_state = CountDown::STOPPED;
|
|
}
|
|
}
|
|
}
|
|
// END OF FILE
|