Allow for the configuration of the HD44780 pins.

This commit is contained in:
Jonathan Naylor
2016-04-06 17:43:20 +01:00
parent f7e2cff004
commit 3ee457830b
6 changed files with 42 additions and 7 deletions

2
Conf.h
View File

@@ -113,6 +113,7 @@ public:
// The HD44780 section
unsigned int getHD44780Rows() const;
unsigned int getHD44780Columns() const;
std::vector<unsigned int> getHD44780Pins() const;
private:
std::string m_file;
@@ -187,6 +188,7 @@ private:
unsigned int m_hd44780Rows;
unsigned int m_hd44780Columns;
std::vector<unsigned int> m_hd44780Pins;
};
#endif