|
|
|
@ -114,6 +114,7 @@ void CConfig::Load (void) |
|
|
|
|
m_nST7789Width = m_Properties.GetNumber ("ST7789Width", 240); |
|
|
|
|
m_nST7789Height = m_Properties.GetNumber ("ST7789Height", 240); |
|
|
|
|
m_nST7789Rotation = m_Properties.GetNumber ("ST7789Rotation", 0); |
|
|
|
|
m_bST7789SmallFont = m_Properties.GetNumber ("ST7789SmallFont", 0) != 0; |
|
|
|
|
|
|
|
|
|
m_nLCDColumns = m_Properties.GetNumber ("LCDColumns", 16); |
|
|
|
|
m_nLCDRows = m_Properties.GetNumber ("LCDRows", 2); |
|
|
|
@ -367,6 +368,10 @@ unsigned CConfig::GetST7789Rotation (void) const |
|
|
|
|
return m_nST7789Rotation; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
bool CConfig::GetST7789SmallFont (void) const |
|
|
|
|
{ |
|
|
|
|
return m_bST7789SmallFont; |
|
|
|
|
} |
|
|
|
|
unsigned CConfig::GetLCDColumns (void) const |
|
|
|
|
{ |
|
|
|
|
return m_nLCDColumns; |
|
|
|
|