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

Dependencies:   microbit

LedMatrix.h

Committer:
kinga
Date:
2017-02-20
Revision:
1:17905d919813
Child:
4:7f5e478f945c

File content as of revision 1:17905d919813:

#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