2019-05-05 23:43:18 +02:00
|
|
|
#ifndef _MATRIX_DISPLAY_H
|
|
|
|
#define _MATRIX_DISPLAY_H
|
|
|
|
|
|
|
|
#include "LEDMatrix.h"
|
|
|
|
#include "ledmatrixfonts.h"
|
|
|
|
|
2019-05-09 22:12:32 +02:00
|
|
|
extern uint8_t MatrixDisplayIsOn = 0;
|
|
|
|
|
2019-05-05 23:43:18 +02:00
|
|
|
extern LEDMatrix matrix;
|
|
|
|
|
|
|
|
void init_matrix_display(const char *Productname, const char *Version);
|
|
|
|
void refreshTheMatrixDisplay(void);
|
|
|
|
void DrawNumber(String strNum, uint8_t iDotPos = 0);
|
|
|
|
uint8_t GetCharFromFont(char cChar);
|
|
|
|
uint8_t GetCharWidth(char cChar);
|
|
|
|
|
|
|
|
#endif
|