Add the HD4470 type display to Raspberry Pis.

This commit is contained in:
Jonathan Naylor
2016-03-14 22:58:09 +00:00
parent 3f61e9a287
commit 070bf2bff4
7 changed files with 277 additions and 8 deletions

7
Conf.h
View File

@@ -103,6 +103,10 @@ public:
std::string getTFTSerialPort() const;
unsigned int getTFTSerialBrightness() const;
// The HD44780 section
unsigned int getHD44780Rows() const;
unsigned int getHD44780Columns() const;
private:
std::string m_file;
std::string m_callsign;
@@ -167,6 +171,9 @@ private:
std::string m_tftSerialPort;
unsigned int m_tftSerialBrightness;
unsigned int m_hd44780Rows;
unsigned int m_hd44780Columns;
};
#endif