remove some lcd print delays when using uart

This commit is contained in:
Vineet K 2024-04-22 11:50:20 -04:00 committed by Shokara Kou
parent ff02822eaa
commit ab2a90ea5b

6
lcd.c
View File

@ -199,7 +199,7 @@ void displayNotes() {
lcd_print("PLAYING"); lcd_print("PLAYING");
} }
_delay_ms(1000); //_delay_ms(1000);
} }
bufferIndex = 0; bufferIndex = 0;
lcd_clear(); lcd_clear();
@ -241,7 +241,7 @@ void displaySerialData() {
lcd_print("RECORDING"); lcd_print("RECORDING");
} }
_delay_ms(1000); //_delay_ms(1000);
} }
bufferIndex = 0; bufferIndex = 0;
lcd_clear(); lcd_clear();
@ -282,7 +282,7 @@ void displayPiano() {
lcd_print("PIANO"); lcd_print("PIANO");
} }
_delay_ms(1000); //_delay_ms(1000);
} }
bufferIndex = 0; bufferIndex = 0;
lcd_clear(); lcd_clear();