User manual

492
mikoBasic PRO for PIC32
MikroElektronika
SPI_T6963C_line
SPI_T6963C_rectangle
Prototype
sub procedure SPI_T6963C_line(dim x0, y0, x1, y1 as integer, dim pcolor as
byte)
Description Draws a line from (x0, y0) to (x1, y1).
Parameters - x0: x coordinate of the line start
- y0: y coordinate of the line end
- x1: x coordinate of the line start
- y1: y coordinate of the line end
- pcolor: color parameter. Valid values: SPI_T6963C_BLACK and SPI_T6963C_WHITE
Returns Nothing.
Requires Toshiba Glcd module needs to be initialized. See SPI_T6963C_Cong routine.
Example
SPI_T6963C_line(0, 0, 239, 127, SPI_T6963C_WHITE)
Notes None.
Prototype
sub procedure SPI_T6963C_rectangle(dim x0, y0, x1, y1 as integer, dim pcolor
as byte)
Description Draws a rectangle on Glcd.
Parameters - x0: x coordinate of the upper left rectangle corner
- y0: y coordinate of the upper left rectangle corner
- x1: x coordinate of the lower right rectangle corner
- y1: y coordinate of the lower right rectangle corner
- pcolor: color parameter. Valid values: SPI_T6963C_BLACK and SPI_T6963C_WHITE
Returns Nothing.
Requires Toshiba Glcd module needs to be initialized. See SPI_T6963C_Cong routine.
Example
SPI_T6963C_rectangle(20, 20, 219, 107, SPI_T6963C_WHITE)
Notes None.