I have a program that displays the current time and date. The time updates until 11:59 pm. I have added the following code but it still does not roll over.
{initialization}
ON TIMER(60) GOSUB UpdateTimeDisplay
TIMER ON
{Program loop}
:UpdateTimeDisplay
IF TIMER < 120 THEN CALL DisplayHeaderDateTime()
RETURN
The date and time do update on a key press.
TIA
{initialization}
ON TIMER(60) GOSUB UpdateTimeDisplay
TIMER ON
{Program loop}
:UpdateTimeDisplay
IF TIMER < 120 THEN CALL DisplayHeaderDateTime()
RETURN
The date and time do update on a key press.
TIA
Comment