From efe012c70d3ed42450d00dc638e80f55840627b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Ha=C3=9Fel?= Date: Mon, 6 Jan 2025 23:00:31 +0100 Subject: [PATCH] Value [WIP] [UNTESTED] --- src/patrix/sensor/Value.h | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/patrix/sensor/Value.h diff --git a/src/patrix/sensor/Value.h b/src/patrix/sensor/Value.h new file mode 100644 index 0000000..25473c1 --- /dev/null +++ b/src/patrix/sensor/Value.h @@ -0,0 +1,22 @@ +#ifndef VALUE_H +#define VALUE_H + +class Value { + + double threshold; + + double lastValue; + + unsigned long lastMillis; + + double sentValue; + + unsigned long sentMillis; + + public: + + + +}; + +#endif