henrik
there is a great probability i never tested it to any great extent , was just happy that it cleared to whole screen at a default setting
this works for one line as i intended things to [you need to work around the limited size of the data buffer glcd_buff]
Code:
gx=5:gx_=32:gy=0:gy_=0 ; clear from x=5 for 32 bits one line
gosub setxy
j=0
for i=0 to gx_
glcd_buff[i]=0 ;by default the buffer is 32 bytes so be wary
next
glcd_rad=gx_
gosub ssd_data
two lines
Code:
gx=5:gx_=32:gy=0:gy_=1
gosub setxy
j=0
for i=0 to gx_
glcd_buff[i]=0
next
glcd_rad=gx_
gosub ssd_data
gosub ssd_data
you may be able to figure out why the command fails , i'm just not seeing it at the present time
Bookmarks