COSA
An Object-Oriented Platform for Arduino Programming
ST7920.hh
Go to the documentation of this file.
1 
21 #ifndef ST7920_HH
22 #define ST7920_HH
23 
24 #include "Cosa/LCD.hh"
25 #include <HD44780.h>
26 
64 class ST7920 : public HD44780 {
65 public:
71  ST7920(IO* io) : HD44780(io, 16, 4)
72  {
73  m_offset = offset2;
74  }
75 
76 private:
78  static const uint8_t offset2[] PROGMEM;
79 };
80 #endif