Added empty LCD class

master
mandlm 2016-01-12 23:05:53 +01:00
parent 72490c9c10
commit 71661588b2
2 changed files with 20 additions and 1 deletions

View File

@ -15,7 +15,7 @@ int main(void)
Pin ledPin(&PORTA, PA0);
// lcd initialization goes here
LCD lcd(shiftRegister);
while(1)
{

View File

@ -17,3 +17,22 @@ public:
void output(int8_t value);
};
class LCD
{
private:
ShiftRegister &m_shiftRegister;
public:
LCD(ShiftRegister &shiftRegister)
: m_shiftRegister(shiftRegister)
{
}
private:
void init()
{
}
};