Page 1 of 1

ANNEX32_1.43: autorefresh fails

Posted: Wed Mar 03, 2021 5:44 pm
by PeterN
Hi CiccioCB,

I did an update of my ESP32-WordClock towards ANNEX32 1.43
It seems to me that autorefresh now has a problem.
I tested it with the following code and expected a refresh every 2 seconds.
But this only works if I uncomment the refresh in SET_TIME:

Am I overseeing something?

Code: [Local Link Removed for Guests]

'AUTOREFRESH TEST 

'autorefresh seems to fail in ANNEX32 1.43 CAN BLE 
' This code works in prior version
text$ = "Start"
CLS
HTML TEXTBOX$(text$)
autorefresh 2000  'should update HTML every 2 seconds 
timer0 1000, SET_TEXT
Wait     

SET_TEXT:
text$ = time$
'refresh   'updates HTML every 1 second  if not commented
Return

END 

Re: ANNEX32_1.43: autorefresh fails

Posted: Wed Mar 03, 2021 6:25 pm
by cicciocb
Good catch Peter, you are right.
I'm doing the fix and I'll post an updated release.

Re: ANNEX32_1.43: autorefresh fails

Posted: Wed Mar 03, 2021 6:43 pm
by cicciocb
I just uploaded another version for both ESP32 and CAMERA.

This version fixes the problem with the AUTOREFRESH

cicciocb

Re: ANNEX32_1.43: autorefresh fails

Posted: Wed Mar 03, 2021 6:57 pm
by PeterN
YOU ARE FASTER THAN LIGHTNING!
THANKS!