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

Dependencies:   microbit

LedMatrix.h

Committer:
kinga
Date:
2017-02-24
Revision:
8:c0e98b2fc93a
Parent:
6:e316416cae08

File content as of revision 8:c0e98b2fc93a:

#ifndef LEDMATRIX_H
#define LEDMATRIX_H

#include "MicroBit.h"
#include <vector>
#include <string>

class LedMatrix {
private:
    vector<vector<int> > ledMatrix;
public:
    LedMatrix();
    void setLedMatrix(int row, int col);
    MicroBitImage getMatrixImage(); 
};

#endif