First trial

Dependencies:   MPU6050 Motor ledControl2 mbed

Fork of BalancingRobotPS3 by Kristian Lauszus

Revision:
9:67f2110fce8e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/HALLFX_ENCODER.cpp	Thu Aug 25 22:50:49 2016 +0000
@@ -0,0 +1,20 @@
+#include "HALLFX_ENCODER.h"
+ 
+HALLFX_ENCODER::HALLFX_ENCODER(PinName enc_in): _enc_in(enc_in){
+    _enc_in.mode(PullUp);
+    // Invoke interrupt on both falling and rising edges
+    _enc_in.fall(this, &HALLFX_ENCODER::callback);
+    _enc_in.rise(this, &HALLFX_ENCODER::callback);
+}
+ 
+long HALLFX_ENCODER::read(){
+    return count;
+}
+ 
+void HALLFX_ENCODER::reset(){
+    count = 0;
+}
+ 
+void HALLFX_ENCODER::callback(){
+    count++;   
+}
\ No newline at end of file