GLCD driver begin

This commit is contained in:
Guilliam Lutz
2021-03-31 10:20:42 +02:00
parent 59c547a2cd
commit fcffefbb7e
88 changed files with 9371 additions and 95 deletions

View File

@@ -21,18 +21,10 @@ void wait( int ms )
int main(void)
{
DDRD = 0b11111111; // d is output
DDRC = 0b00000000; // c is all input
while (1)
{
if (PINC & 0b00000001) {
PORTD = 0b01000000;
wait(1000);
PORTD = 0b00000000;
wait(1000);
}
}
}