summaryrefslogtreecommitdiff
path: root/platformio/relayctl/src/stopwatch.h
diff options
context:
space:
mode:
authorEvgeny Zinoviev <me@ch1p.io>2023-05-17 04:06:18 +0300
committerEvgeny Zinoviev <me@ch1p.io>2023-05-17 04:06:18 +0300
commitc0111bf4d3dd91f54d27346970e4c6e0a1ce357e (patch)
treebeb15167412bc3ed60e3e11e9076d27ea6f437e5 /platformio/relayctl/src/stopwatch.h
parent893e21cc83ee1ecf236a005f1bf4893448e9b3ea (diff)
pio: products refactoring
Diffstat (limited to 'platformio/relayctl/src/stopwatch.h')
-rw-r--r--platformio/relayctl/src/stopwatch.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/platformio/relayctl/src/stopwatch.h b/platformio/relayctl/src/stopwatch.h
deleted file mode 100644
index bac2fcc..0000000
--- a/platformio/relayctl/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