Files
jprodgers 082e478a74 Lots of fixes.
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.
2015-05-28 18:09:48 +02:00

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