Hello,
I am trying to use the custom digits feature without success so far: the initial image with "00" is shown, but ledDigitsDisplay does not seem to work.
The initial image displayed indicates that the GCI file is likely loaded properly. Extra debug statements also informed me that the loop is actually working, but the display is not updated.
I am new to Workshop4, so there is probably something obvious I am missing.
Thanks for your help,
Worskhop: 4.6.0.20
Display: Gen4-uLCD-32DT

Attached: full project with BMP file.
I am trying to use the custom digits feature without success so far: the initial image with "00" is shown, but ledDigitsDisplay does not seem to work.
The initial image displayed indicates that the GCI file is likely loaded properly. Extra debug statements also informed me that the loop is actually working, but the display is not updated.
I am new to Workshop4, so there is probably something obvious I am missing.
Thanks for your help,
Worskhop: 4.6.0.20
Display: Gen4-uLCD-32DT
Code:
hndl := file_LoadImageControl("count.dat", "count.gci", 1); img_Show(hndl, icount); // show all digits at 0, only do this once i := 0; repeat ledDigitsDisplay(0, iicount, 0, 2, 1, 36, 0) ; i++; if ( i > 99 ) i := 0; endif pause(1000); forever
Attached: full project with BMP file.
Comment