GY-63_MS5611/libraries/CountDown/CountDown.cpp

136 lines
2.4 KiB
C++
Raw Normal View History

//
// FILE: CountDown.cpp
// AUTHOR: Rob Tillaart
2022-10-30 14:56:11 -04:00
// VERSION: 0.2.7
// PURPOSE: CountDown library for Arduino
2020-11-27 05:10:47 -05:00
// URL: https://github.com/RobTillaart/CountDown
//
2022-10-30 14:56:11 -04:00
// HISTORY: see changelog.md
2021-01-29 06:31:58 -05:00
#include "CountDown.h"
2021-01-29 06:31:58 -05:00
CountDown::CountDown(const enum Resolution res)
{
setResolution(res);
stop();
}
2021-01-29 06:31:58 -05:00
void CountDown::setResolution(const enum Resolution res)
{
_res = res;
_ticks = 0;
}
2021-01-29 06:31:58 -05:00
bool CountDown::start(uint32_t ticks)
{
_ticks = ticks;
2020-11-27 05:10:47 -05:00
_state = CountDown::RUNNING;
if (_res == MICROS)
{
_starttime = micros();
}
else
{
_starttime = millis();
}
2021-01-29 06:31:58 -05:00
return true; // can not overflow
}
2021-01-29 06:31:58 -05:00
bool CountDown::start(uint8_t days, uint16_t hours, uint32_t minutes, uint32_t seconds)
{
2021-01-29 06:31:58 -05:00
float _days = seconds / 86400.0 + minutes / 1440.0 + hours / 24.0 + days;
bool rv = (_days < 49.7102696);
uint32_t ticks = 86400UL * days + 3600UL * hours + 60UL * minutes + seconds;
if (ticks > 4294967) ticks = 4294967; // prevent underlying millis() overflow
setResolution(SECONDS);
start(ticks);
2021-01-29 06:31:58 -05:00
return rv;
}
2021-01-29 06:31:58 -05:00
bool CountDown::start(uint8_t days, uint16_t hours, uint32_t minutes)
2020-11-27 05:10:47 -05:00
{
2021-01-29 06:31:58 -05:00
float _days = minutes / 1440.0 + hours / 24.0 + days;
bool rv = (_days < 49.7102696);
2020-11-27 05:10:47 -05:00
uint32_t ticks = 86400UL * days + 3600UL * hours + 60UL * minutes;
if (ticks > 4294967) ticks = 4294967; // prevent underlying millis() overflow
setResolution(MINUTES);
start(ticks);
2021-01-29 06:31:58 -05:00
return rv;
2020-11-27 05:10:47 -05:00
}
2021-01-29 06:31:58 -05:00
void CountDown::stop()
{
calcRemaining();
_state = CountDown::STOPPED;
}
2021-01-29 06:31:58 -05:00
void CountDown::cont()
{
if (_state == CountDown::STOPPED)
{
start(_remaining);
}
}
2021-01-29 06:31:58 -05:00
bool CountDown::isRunning()
{
calcRemaining();
return (_state == CountDown::RUNNING);
}
uint32_t CountDown::remaining()
{
calcRemaining();
2020-11-27 05:10:47 -05:00
if (_remaining == 0) _state = CountDown::STOPPED;
return _remaining;
}
2021-01-29 06:31:58 -05:00
void CountDown::calcRemaining()
{
2020-11-27 05:10:47 -05:00
uint32_t t = 0;
if (_state == CountDown::RUNNING)
{
2020-11-27 05:10:47 -05:00
switch(_res)
{
2020-11-27 05:10:47 -05:00
case MINUTES:
t = (millis() - _starttime) / 60000UL;
break;
case SECONDS:
t = (millis() - _starttime) / 1000UL;;
break;
case MICROS:
t = micros() - _starttime;
break;
case MILLIS:
default:
t = millis() - _starttime;
break;
}
2021-01-29 06:31:58 -05:00
_remaining = _ticks > t ? _ticks - t : 0;
if (_remaining == 0)
{
_state = CountDown::STOPPED;
}
2020-11-27 05:10:47 -05:00
return;
}
2020-11-27 05:10:47 -05:00
// do not change
}
2020-11-27 05:10:47 -05:00
// -- END OF FILE --