summaryrefslogtreecommitdiff
path: root/platformio/temphum/src/stopwatch.h
diff options
context:
space:
mode:
Diffstat (limited to 'platformio/temphum/src/stopwatch.h')
-rw-r--r--platformio/temphum/src/stopwatch.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/platformio/temphum/src/stopwatch.h b/platformio/temphum/src/stopwatch.h
deleted file mode 100644
index bac2fcc..0000000
--- a/platformio/temphum/src/stopwatch.h
+++ /dev/null
@@ -1,30 +0,0 @@
-#pragma once
-
-#include <Arduino.h>
-
-namespace homekit {
-
-class StopWatch {
-private:
- unsigned long time;
-
-public:
- StopWatch() : time(0) {};
-
- inline void save() {
- time = millis();
- }
-
- inline bool elapsed(unsigned long ms) {
- unsigned long now = millis();
- if (now < time) {
- // rollover?
- time = now;
- } else if (now - time >= ms) {
- return true;
- }
- return false;
- }
-};
-
-} \ No newline at end of file