IO is an event based input manager which permit to select which composents are manged on your system

Dependencies:   C12832 FXOS8700Q LM75B MMA7660

Revision:
3:1ab88130bb9d
Parent:
0:2ac59c564ab0
--- a/Event.h	Tue Feb 23 18:56:50 2016 +0000
+++ b/Event.h	Thu Feb 25 14:28:48 2016 +0000
@@ -1,6 +1,6 @@
 #pragma once
 
-#include "Vector.hpp"
+#include "Vector.h"
 
 struct Event
 {
@@ -27,10 +27,10 @@
     
     const ButtonState   binary; // State of the button if needed
     float               analog; // The value if needed (Analog sensors)
-    Vector<float>       vector;// Vector of float if needed (accelerometer)
+    Vector              vector;// Vector of float if needed (accelerometer)
     
     Event(Device, Type, int, ButtonState);
     Event(Device, Type, int, float);
-    Event(Device, Type, int, const Vector<float> &);
+    Event(Device, Type, int, const Vector &);
     Event(const Event &);
 };