COSA
An Object-Oriented Platform for Arduino Programming
Font6x10.hh
Go to the documentation of this file.
1 
23 #ifndef COSA_FONT6X10_HH
24 #define COSA_FONT6X10_HH
25 
26 #include "Font.hh"
27 
31 class Font6x10 : public Font {
32 public:
37  Font(width, height, first, last, bitmap, compression_type)
38  {}
39 
40 private:
41  static const uint8_t bitmap[] PROGMEM;
42  static const uint8_t compression_type;
43  static const uint8_t width;
44  static const uint8_t height;
45  static const uint8_t first;
46  static const uint8_t last;
47 } font6x10;
48 
49 #include "Data/6x10.h"
50 
51 #endif
Definition: Font.hh:30
Font6x10 font6x10
Font6x10()
Definition: Font6x10.hh:36