Projects › Projects › LCD based digital clock using 8051 project. Does it work for you? › Resolved! The Delay(100) at
January 1, 2015 at 4:55 pm
#12489
Participant
Resolved!
The Delay(100) at the bottom here:
<code>lcd_data_string(” “);
delay(100); </code>
Had to be changed to 675 to correct the clock speed. Now the project’s minute is about 60.4 seconds.
<code>lcd_data_string(” “);
delay(675); </code>