muwerk Scheduler Library
A low-resource cooperative scheduler with MQTT-like queues for Arduinos, ATtiny up to ESP32
Loading...
Searching...
No Matches
heartbeat.h
1// heartbeat.h - muwerk heartbeat class
2
3#pragma once
4
5#include "ustd_platform.h"
6#include "muwerk.h"
7
8namespace ustd {
9
47class heartbeat {
48 private:
49 unsigned long timerStart;
50 unsigned long beatLength;
51
52 public:
53 heartbeat(unsigned long length = 0) : beatLength{length} {
57 timerStart = millis();
58 }
59
60 heartbeat &operator=(const unsigned long length) {
64 beatLength = length;
65 return *this;
66 }
67
68 operator unsigned long() const {
72 return beatLength;
73 }
74
75 unsigned long beat() {
81 unsigned long now = millis();
82 unsigned long diff = ustd::timeDiff(timerStart, now);
83 if (beatLength && diff >= beatLength) {
84 timerStart = now - (diff % beatLength);
85 return diff / beatLength;
86 }
87 return 0;
88 }
89
90 unsigned long elapsed() {
97 unsigned long now = millis();
98 unsigned long diff = ustd::timeDiff(timerStart, now);
99 if (beatLength && diff >= beatLength) {
100 timerStart = now;
101 return diff / beatLength;
102 }
103 return 0;
104 }
105};
106
107} // namespace ustd
muwerk HeartBeat Class
Definition heartbeat.h:47
unsigned long beat()
Definition heartbeat.h:75
unsigned long elapsed()
Definition heartbeat.h:90
heartbeat(unsigned long length=0)
Definition heartbeat.h:53
heartbeat & operator=(const unsigned long length)
Definition heartbeat.h:60
The muwerk namespace.
Definition console.h:15
unsigned long timeDiff(unsigned long first, unsigned long second)
Definition muwerk.h:44