Device to measure angle and get IMU measurements.

Dependencies:   mbed commands BLE_API nRF51822

Revision:
0:1c5088dae6e1
Child:
1:b44bd62c542f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Storage.h	Wed May 20 08:44:35 2015 +0000
@@ -0,0 +1,20 @@
+#ifndef _STORAGE_H_
+#define _STORAGE_H_
+
+#include "mbed.h"
+
+class Storage
+{
+    static Storage* instance;
+    Storage();
+
+public:
+
+    static Storage* getInstance();
+    void setup();
+    void write();
+    int32_t read();
+
+};
+
+#endif /* _STORAGE_H_ */
\ No newline at end of file