Mikroelektronika MIKROE-350 数据表

下载
页码 526
SPI_T6963C_Image
SPI_T6963C_Sprite
430
MIKROELEKTRONIKA
- SOFTWARE AND HARDWARE SOLUTIONS FOR EMBEDDED WORLD
Libraries
mikroBasic PRO for AVR
CHAPTER 6
Prototype
sub procedure SPI_T6963C_image(const pic as ^byte)
Returns
Nothing.
Description
Displays bitmap on Glcd.
Parameters : 
pic:
image to be displayed. Bitmap array can be located in both code and  
RAM memory (due to the mikroBasic PRO for AVR pointer to const and 
pointer to RAM equivalency). 
Use the mikroBasic PRO’s integrated Glcd Bitmap Editor (menu option Tools ›
Glcd Bitmap Editor
) to convert image to a constant array suitable for display-
ing on Glcd. 
Requires
Toshiba Glcd module needs to be initialized. See SPI_T6963C_Config routine.
Example
SPI_T6963C_Image(my_image)
Prototype
sub procedure SPI_T6963C_sprite(dim px, py, sx, sy as byteconst
pic 
as ^byte)
Returns
Nothing.
Description
Fills graphic rectangle area (px, py) to (px+sx, py+sy) with custom size picture.
Parameters : 
px:
x coordinate of the upper left picture corner. Valid values: multiples of the  
font width 
py:
y coordinate of the upper left picture corner 
pic:
picture to be displayed 
sx:
picture width. Valid values: multiples of the font width 
sy:
picture height 
Note: If 
px
and 
sx
parameters are not multiples of the font width they will be
scaled to the nearest lower number that is a multiple of the font width. 
Requires
Toshiba Glcd module needs to be initialized. See SPI_T6963C_Config routine.
Example
SPI_T6963C_Sprite(76, 4, einstein, 88, 119) ' draw a sprite