eel4746_avr_piano

For our Microprocessor's class final project, we chose to make a chiptune piano using AVR C on two Arduino UNOs.
Log | Files | Refs | README | LICENSE

commit ab2a90ea5b0b1a44ad7be910650afd9610eff805
parent ff02822eaaa62717b30626044e8469ff6f923b4c
Author: Vineet K <git@vineetk.net>
Date:   Mon, 22 Apr 2024 11:50:20 -0400

remove some lcd print delays when using uart

Diffstat:
Mlcd.c | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

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