summaryrefslogtreecommitdiff
path: root/src/counter.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/counter.h')
-rw-r--r--src/counter.h31
1 files changed, 13 insertions, 18 deletions
diff --git a/src/counter.h b/src/counter.h
index e47475e..cc3e2f4 100644
--- a/src/counter.h
+++ b/src/counter.h
@@ -1,24 +1,19 @@
-#include "mbed.h"
+#ifndef COUNTER_H
+#define COUNTER_H
-class Counter {
-public:
- Counter(PinName pin) : _interrupt(pin) { // create the InterruptIn on the pin specified to Counter
- _interrupt.rise(this, &Counter::increment); // attach increment function of this counter instance
- }
-
- void increment() {
- _count++;
- }
-
- int read() {
- return _count;
- }
+#include "mbed.h"
- void write(int new_count) {
- _count = new_count;
- }
-
+class Counter
+{
private:
InterruptIn _interrupt;
volatile int _count;
+
+public:
+ Counter(PinName pin);
+ void increment();
+ int read();
+ void write(int new_count);
};
+
+#endif