13 lines
233 B
C
13 lines
233 B
C
#ifndef _MATRIX_H_
|
|
#define _MATRIX_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
int pokeMatrixPixel(uint8_t x, uint8_t y);
|
|
void resetMatrix();
|
|
void displayMatrix();
|
|
void writeLEDMatrix(uint8_t row, uint8_t col);
|
|
void testMatrix();
|
|
|
|
#endif // _MATRIX_H_
|