GY-63_MS5611/libraries/timing/timing.h

54 lines
1.2 KiB
C
Raw Normal View History

2021-01-29 06:31:58 -05:00
#pragma once
//
// FILE: timing.h
// AUTHOR: Rob Tillaart
2022-11-26 08:28:31 -05:00
// VERSION: 0.2.4
2021-01-29 06:31:58 -05:00
// PURPOSE: Arduino library with wrapper classes for seconds millis micros
// URL: https://github.com/RobTillaart/timing
2022-11-26 08:28:31 -05:00
#define TIMING_LIB_VERSION (F("0.2.4"))
2021-05-28 07:47:03 -04:00
2021-01-29 06:31:58 -05:00
class microSeconds
{
public:
microSeconds() { set(0); }
uint32_t now() { return micros() - _offset; }
2021-12-29 05:16:45 -05:00
void set(uint32_t value = 0UL) { _offset = micros() - value; }
2021-01-29 06:31:58 -05:00
uint32_t getOffset() { return _offset; };
private:
uint32_t _offset = 0UL;
};
class milliSeconds
{
public:
milliSeconds() { set(0); };
uint32_t now() { return millis() - _offset; };
2021-12-29 05:16:45 -05:00
void set(uint32_t value = 0UL) { _offset = millis() - value; };
2021-01-29 06:31:58 -05:00
uint32_t getOffset() { return _offset; };
private:
uint32_t _offset = 0UL;
};
class seconds
{
public:
seconds() { set(0); }
2022-11-26 08:28:31 -05:00
uint32_t now() { return millis() / 1000UL - _offset; }
void set(uint32_t value = 0UL) { _offset = millis() / 1000UL - value; }
2021-01-29 06:31:58 -05:00
uint32_t getOffset() { return _offset; };
private:
uint32_t _offset = 0UL;
};
2021-05-28 07:47:03 -04:00
2021-01-29 06:31:58 -05:00
// -- END OF FILE --
2021-12-29 05:16:45 -05:00