16 lines
193 B
C
16 lines
193 B
C
#ifndef MATRIX_H
|
|
#define MATRIX_H 1
|
|
|
|
#include <stdbool.h>
|
|
#include "matrix_skel.h"
|
|
|
|
|
|
#define MATRIX_ROWS 8
|
|
#define MATRIX_COLS 8
|
|
|
|
|
|
extern uint8_t *matrix;
|
|
extern uint8_t *matrix_prev;
|
|
|
|
#endif
|