Sends compass and accelerometer data, receives data and displays on LED matrix

Dependencies:   microbit

Revision:
1:17905d919813
Child:
4:7f5e478f945c
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/LedMatrix.h	Mon Feb 20 09:12:41 2017 +0000
@@ -0,0 +1,18 @@
+#ifndef LEDMATRIX_H
+#define LEDMATRIX_H
+
+#include "MicroBit.h"
+#include <vector>
+#include <string>
+
+class LedMatrix {
+private:
+    vector<vector<int> > ledMatrix;
+public:
+    LedMatrix();
+    //void setLedMatrix(ManagedString data);
+    void setLedMatrix(int row, int col);
+    MicroBitImage getMatrixImage(); 
+};
+
+#endif
\ No newline at end of file