COSA
An Object-Oriented Platform for Arduino Programming
System5x7.hh
Go to the documentation of this file.
1 
21 #ifndef COSA_SYSTEM5X7_HH
22 #define COSA_SYSTEM5X7_HH
23 
24 #include "Font.hh"
25 
32 class System5x7 : public Font {
33 public:
38  Font(width, height, first, last, bitmap)
39  {}
40 
41 private:
42  static const uint8_t bitmap[] PROGMEM;
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 };
48 
49 extern System5x7 system5x7;
50 
51 #endif
52 
Definition: Font.hh:30
System5x7 system5x7
Definition: System5x7.cpp:24