Value [WIP] [UNTESTED]

This commit is contained in:
Patrick Haßel 2025-01-06 23:00:31 +01:00
parent f81e791599
commit efe012c70d

22
src/patrix/sensor/Value.h Normal file
View File

@ -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