0060b101df
This commit adds support for a specific LED Matrix display, which can be used to show the number of found devices on a rather large display. We (hackerspace Brixel) used this on the mini Maker Faire Gent 2019 to show the number of found devices throughout the event
17 lines
405 B
C
17 lines
405 B
C
#ifndef _MATRIX_DISPLAY_H
|
|
#define _MATRIX_DISPLAY_H
|
|
|
|
#include "LEDMatrix.h"
|
|
#include "ledmatrixfonts.h"
|
|
|
|
extern uint8_t MatrixDisplayIsOn;
|
|
|
|
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 |