aboutsummaryrefslogtreecommitdiff
path: root/Mussel
diff options
context:
space:
mode:
Diffstat (limited to 'Mussel')
-rw-r--r--Mussel/Mussel.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/Mussel/Mussel.h b/Mussel/Mussel.h
index a098e52..bdc2be8 100644
--- a/Mussel/Mussel.h
+++ b/Mussel/Mussel.h
@@ -27,6 +27,12 @@
// Limited size NOW!! can be transformed into infinite array
#define STACK_SIZE 1000
+struct Vote {
+ String id;
+ unsigned long timestamp;
+ int measure;
+};
+
class Mussel {
public:
@@ -42,12 +48,6 @@ class Mussel {
const uint8_t pin,
const uint8_t type);
- struct Vote {
- String id;
- unsigned long timestamp;
- int measure;
- };
-
void begin();
String desc();
byte read();