User manual
484
mikoPascal PRO for PIC32
MikroElektronika
SPI_T6963C_box
SPI_T6963C_circle
SPI_T6963C_circle_ll
Prototype
procedure SPI_T6963C_box(x0, y0, x1, y1 : integer; pcolor : byte);
Description Draws a box on the Glcd
Parameters - x0: x coordinate of the upper left box corner
- y0: y coordinate of the upper left box corner
- x1: x coordinate of the lower right box corner
- y1: y coordinate of the lower right box 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_Cong routine.
Example
SPI_T6963C_box(0, 119, 239, 127, SPI_T6963C_WHITE);
Notes None.
Prototype
procedure SPI_T6963C_circle(x, y : integer; r : longint; pcolor : word);
Description Draws a circle on the Glcd.
Parameters - x: x coordinate of the circle center
- y: y coordinate of the circle center
- r: radius size
- 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_Cong routine.
Example
SPI_T6963C_circle(120, 64, 110, SPI_T6963C_WHITE);
Notes None.
Prototype
procedure SPI_T6963C_circle_ll(x : integer; y : integer; r : longint;
pcolor : word);
Description Draws a lled circle on the Glcd.
Parameters - x: x coordinate of the circle center
- y: y coordinate of the circle center
- r: radius size
- 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_Cong routine.
Example
SPI_T6963C_circle_ll(120, 64, 110, SPI_T6963C_WHITE);
Notes None.