Added empty LCD class
This commit is contained in:
parent
72490c9c10
commit
71661588b2
2 changed files with 20 additions and 1 deletions
|
@ -15,7 +15,7 @@ int main(void)
|
||||||
Pin ledPin(&PORTA, PA0);
|
Pin ledPin(&PORTA, PA0);
|
||||||
|
|
||||||
// lcd initialization goes here
|
// lcd initialization goes here
|
||||||
|
LCD lcd(shiftRegister);
|
||||||
|
|
||||||
while(1)
|
while(1)
|
||||||
{
|
{
|
||||||
|
|
|
@ -17,3 +17,22 @@ public:
|
||||||
|
|
||||||
void output(int8_t value);
|
void output(int8_t value);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
class LCD
|
||||||
|
{
|
||||||
|
private:
|
||||||
|
ShiftRegister &m_shiftRegister;
|
||||||
|
|
||||||
|
public:
|
||||||
|
LCD(ShiftRegister &shiftRegister)
|
||||||
|
: m_shiftRegister(shiftRegister)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private:
|
||||||
|
void init()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
};
|
Loading…
Reference in a new issue