forked from Michel2/LoLshield
My last commit broke all the things. I had to move things around according to where Arduino expects the libraries now. Also fixed MyFont to work in Grayscale mode.
14 lines
185 B
C++
14 lines
185 B
C++
#ifndef Myfont_h
|
|
#define Myfont_h
|
|
|
|
|
|
|
|
#include <inttypes.h>
|
|
|
|
namespace Myfont
|
|
{
|
|
extern void Draw(int xval, unsigned char chr);
|
|
extern void Banner(int len, unsigned char* text);
|
|
}
|
|
#endif
|