18 lines
363 B
C++
18 lines
363 B
C++
#pragma once
|
|
#include "durations.h"
|
|
|
|
class Pulse {
|
|
public:
|
|
Pulse(unsigned long period);
|
|
|
|
/** Ticked tells you if a period has elapsed. */
|
|
bool Ticked();
|
|
|
|
/** Until sets the duration of the next period. */
|
|
void Until(unsigned long next);
|
|
void Until(unsigned long next, unsigned long now);
|
|
|
|
unsigned long period;
|
|
unsigned long nextEventMillis;
|
|
};
|