SPI T6963C Graphic Lcd Library

The mikroC PRO for PIC provides a library for working with Glcds based on TOSHIBA T6963C controller via SPI interface. The Toshiba T6963C is a very popular Lcd controller for the use in small graphics modules. It is capable of controlling displays with a resolution up to 240x128. Because of its low power and small outline it is most suitable for mobile applications such as PDAs, MP3 players or mobile measurement equipment. Although this controller is small, it has a capability of displaying and merging text and graphics and it manages all interfacing signals to the displays Row and Column drivers.

For creating a custom set of Glcd images use Glcd Bitmap Editor Tool.

  Important :

Some mikroElektronika's adapter boards have pinout different from T6369C datasheets. Appropriate relations between these labels are given in the table below:

Adapter Board T6369C datasheet
RS C/D
R/W /RD
E /WR

Library Dependency Tree

SPI T6963C Library Dependency Tree

External dependencies of SPI T6963C Graphic Lcd Library

The implementation of SPI T6963C Graphic Lcd Library routines is based on Port Expander Library routines.

External dependencies are the same as Port Expander Library external dependencies.

Library Routines

The following low level library routines are implemented as macros. These macros can be found in the __SPIT6963C.h header file which is located in the SPI T6963C example projects folders.

SPI_T6963C_Config

Prototype

void SPI_T6963C_Config(unsigned int width, unsigned char height, unsigned char fntW, char DeviceAddress, unsigned char wr, unsigned char rd, unsigned char cd, unsigned char rst);

Returns

Nothing.

Description

Initializes T6963C Graphic Lcd controller.

Parameters :

  • width: width of the Glcd panel
  • height: height of the Glcd panel
  • fntW: font width
  • DeviceAddress: SPI expander hardware address, see schematic at the bottom of this page
  • wr: write signal pin on Glcd control port
  • rd: read signal pin on Glcd control port
  • cd: command/data signal pin on Glcd control port
  • rst: reset signal pin on Glcd control port

Display RAM organization:
The library cuts RAM into panels : a complete panel is one graphics panel followed by a text panel (see schematic below).

schematic:
+---------------------+ /\
+ GRAPHICS PANEL #0   +  |
+                     +  |
+                     +  |
+                     +  |
+---------------------+  | PANEL 0
+ TEXT PANEL #0       +  |
+                     + \/
+---------------------+ /\
+ GRAPHICS PANEL #1   +  |
+                     +  |
+                     +  |
+                     +  |
+---------------------+  | PANEL 1
+ TEXT PANEL #1       +  |
+                     +  |
+---------------------+ \/            	
            
Requires Global variables :
  • SPExpanderCS: Chip Select line
  • SPExpanderRST: Reset line
  • SPExpanderCS_Direction: Direction of the Chip Select pin
  • SPExpanderRST_Direction: Direction of the Reset pin
must be defined before using this function.


The SPI module needs to be initialized. See the SPIx_Init and SPIx_Init_Advanced routines.

Example
// Port Expander module connections
sbit  SPExpanderRST at RC0_bit;
sbit  SPExpanderCS  at RC1_bit;
sbit  SPExpanderRST_Direction at TRISC0_bit;
sbit  SPExpanderCS_Direction  at TRISC1_bit;
// End Port Expander module connections

...

// Initialize SPI module
SPI1_Init();
SPI_T6963C_Config(240, 64, 8, 0, 0, 1, 3, 4);

SPI_T6963C_writeData

Prototype

void SPI_T6963C_writeData(unsigned char Ddata);

Returns

Nothing.

Description

Writes data to T6963C controller via SPI interface.

Parameters :

  • Ddata: data to be written

Requires

Toshiba Glcd module needs to be initialized. See SPI_T6963C_Config routine.

Example
SPI_T6963C_writeData(AddrL);

SPI_T6963C_writeCommand

Prototype

void SPI_T6963C_writeCommand(unsigned char Ddata);

Returns

Nothing.

Description

Writes command to T6963C controller via SPI interface.

Parameters :

  • Ddata: command to be written

Requires

Toshiba Glcd module needs to be initialized. See SPI_T6963C_Config routine.

Example
SPI_T6963C_writeCommand(SPI_T6963C_CURSOR_POINTER_SET);

SPI_T6963C_setPtr

Prototype

void SPI_T6963C_setPtr(unsigned int p, unsigned char c);

Returns

Nothing.

Description

Sets the memory pointer p for command c.

Parameters :

  • p: address where command should be written
  • c: command to be written

Requires

SToshiba Glcd module needs to be initialized. See SPI_T6963C_Config routine.

Example
SPI_T6963C_setPtr(SPI_T6963C_grHomeAddr + start, SPI_T6963C_ADDRESS_POINTER_SET);

SPI_T6963C_Set_Ext_Buffer

Prototype

void SPI_T6963C_Set_Ext_Buffer(char* (*getExtDataPtr)(unsigned long offset, unsigned int count, unsigned int *num));

Returns

Nothing.

Description

Function sets pointer to the user function which manipulates the external resource.

Parameters :

  • offset - offset from the beginning of the resource from where the data is requested.
  • count - requested number of bytes.
  • num - variable for holding the returned number of bytes (less or equal to the number of acquired bytes).
Requires

Toshiba Glcd module needs to be initialized. See SPI_T6963C_Config routine.

Example
char* ReadExternalBuffer(unsigned long offset, unsigned int count, unsigned int *num){
  unsigned long start_sector;
  unsigned int pos;

  start_sector = Mmc_Get_File_Write_Sector() + offset/512;
  pos = (unsigned long)offset%512;

  if(start_sector == currentSector+1){
    Mmc_Multi_Read_Buffer(EXT_BUFFER);
    currentSector = start_sector;
  }else
    if(start_sector != currentSector){
      Mmc_Multi_Read_Stop();
      Mmc_Multi_Read_Start(start_sector);
      Mmc_Multi_Read_Buffer(EXT_BUFFER);
      currentSector = start_sector;
    }

  if(count>512-pos){
    *num = 512-pos;
  }
  else
    *num = count;

  return EXT_BUFFER+pos;
}

SPI_T6963C_Set_Ext_Buffer(ReadExternalBuffer);

SPI_T6963C_waitReady

Prototype

void SPI_T6963C_waitReady(void);

Returns

Nothing.

Description

Pools the status byte, and loops until Toshiba Glcd module is ready.

Requires

Toshiba Glcd module needs to be initialized. See SPI_T6963C_Config routine.

Example
SPI_T6963C_waitReady();

SPI_T6963C_fill

Prototype

void SPI_T6963C_fill(unsigned char v, unsigned int start, unsigned int len);

Returns

Nothing.

Description

Fills controller memory block with given byte.

Parameters :

  • v: byte to be written
  • start: starting address of the memory block
  • len: length of the memory block in bytes

Requires

Toshiba Glcd module needs to be initialized. See SPI_T6963C_Config routine.

Example
SPI_T6963C_fill(0x33,0x00FF,0x000F);

SPI_T6963C_dot

Prototype

void SPI_T6963C_dot(int x, int y, unsigned char color);

Returns

Nothing.

Description

Draws a dot in the current graphic panel of Glcd at coordinates (x, y).

Parameters :

  • x: dot position on x-axis
  • y: dot position on y-axis
  • color: color parameter. Valid values: SPI_T6963C_BLACK, SPI_T6963C_WHITE and SPI_T6963C_INVERT.

Requires

Toshiba Glcd module needs to be initialized. See SPI_T6963C_Config routine.

Example
SPI_T6963C_dot(x0, y0, SPI_T6963C_WHITE);

SPI_T6963C_Set_Font_Adv

Prototype

void SPI_T6963C_Set_Font_Adv(const far char *activeFont, unsigned char font_color, char font_orientation);

Description

Sets font that will be used with SPI_T6963C_Write_Char_Adv and SPI_T6963C_Write_Text_Adv routines.

Parameters
  • activeFont: font to be set. Needs to be formatted as an array of char.
  • font_color: sets font color.
  • font_orientation: sets font orientation.
Returns

Nothing.

Requires

Toshiba Glcd module needs to be initialized. See SPI_T6963C_Config routine.

Example
SPI_T6963C_Set_Font_Adv(&myfont, 1, 0);
Notes

None.

SPI_T6963C_Set_Ext_Font_Adv

Prototype

void SPI_T6963C_Set_Ext_Font_Adv(unsigned long activeFont, unsigned char font_color, char font_orientation);

Description

Sets font that will be used with SPI_T6963C_Write_Char_Adv and SPI_T6963C_Write_Text_Adv routines. Font is located in an external resource.

Parameters
  • activeFont: font to be set. This parameter represents the address in the exteral resource from where the font data begins.
  • font_color: sets font color.
  • font_orientation: sets font orientation.
Returns

Nothing.

Requires

Toshiba Glcd module needs to be initialized. See SPI_T6963C_Config routine.

Example
SPI_T6963C_Set_Ext_Font_Adv(173296, 0, 0);
Notes

None.

SPI_T6963C_write_char

Prototype

void SPI_T6963C_write_char(unsigned char c, unsigned char x, unsigned char y, unsigned char mode);

Returns

Nothing.

Description

Writes a char in the current text panel of Glcd at coordinates (x, y).

Parameters :

  • c: char to be written
  • x: char position on x-axis
  • y: char position on y-axis
  • mode: mode parameter. Valid values: SPI_T6963C_ROM_MODE_OR, SPI_T6963C_ROM_MODE_XOR, SPI_T6963C_ROM_MODE_AND and SPI_T6963C_ROM_MODE_TEXT

Mode parameter explanation:

  • SPI_T6963C_ROM_MODE_OR Mode: In the OR-Mode, text and graphics can be displayed and the data is logically “OR-ed”. This is the most common way of combining text and graphics for example labels on buttons.
  • SPI_T6963C_ROM_MODE_XOR Mode: In this mode, the text and graphics data are combined via the logical “exclusive OR”. This can be useful to display text in negative mode, i.e. white text on black background.
  • SPI_T6963C_ROM_MODE_AND Mode: The text and graphic data shown on display are combined via the logical “AND function”.
  • SPI_T6963C_ROM_MODE_TEXT Mode: This option is only available when displaying just a text. The Text Attribute values are stored in the graphic area of display memory.
For more details see the T6963C datasheet.

Requires

Toshiba Glcd module needs to be initialized. See SPI_T6963C_Config routine.

Example
SPI_T6963C_write_char("A",22,23,SPI_T6963C_ROM_MODE_AND);

SPI_T6963C_write_char_adv

Prototype

void SPI_T6963C_write_char_adv(unsigned char ch, unsigned int x, unsigned int y);

Description

Writes a char in the current text panel of Glcd at coordinates (x, y).

Parameters
  • c: char to be written
  • x: char position on x-axis
  • y: char position on y-axis
Returns

Nothing.

Requires

Toshiba Glcd module needs to be initialized. See SPI_T6963C_Config routine.

Example
SPI_T6963C_Write_Char_Adv('A',22,23);
Notes

None.

SPI_T6963C_write_text

Prototype

void SPI_T6963C_write_text(unsigned char *str, unsigned char x, unsigned char y, unsigned char mode);

Returns

Nothing.

Description

Writes text in the current text panel of Glcd at coordinates (x, y).

Parameters :

  • str: text to be written
  • x: text position on x-axis
  • y: text position on y-axis
  • mode: mode parameter. Valid values: SPI_T6963C_ROM_MODE_OR, SPI_T6963C_ROM_MODE_XOR, SPI_T6963C_ROM_MODE_AND and SPI_T6963C_ROM_MODE_TEXT

Mode parameter explanation:

  • SPI_T6963C_ROM_MODE_OR Mode: In the OR-Mode, text and graphics can be displayed and the data is logically “OR-ed”. This is the most common way of combining text and graphics for example labels on buttons.
  • SPI_T6963C_ROM_MODE_XOR Mode: In this mode, the text and graphics data are combined via the logical “exclusive OR”. This can be useful to display text in negative mode, i.e. white text on black background.
  • SPI_T6963C_ROM_MODE_AND Mode: The text and graphic data shown on display are combined via the logical “AND function”.
  • SPI_T6963C_ROM_MODE_TEXT Mode: This option is only available when displaying just a text. The Text Attribute values are stored in the graphic area of display memory.
For more details see the T6963C datasheet.

Requires

Toshiba Glcd module needs to be initialized. See SPI_T6963C_Config routine.

Example
SPI_T6963C_write_text("Glcd LIBRARY DEMO, WELCOME !", 0, 0, SPI_T6963C_ROM_MODE_XOR);

SPI_T6963C_Write_Text_Adv

Prototype

void SPI_T6963C_Write_Text_Adv(unsigned char *text, unsigned int x, unsigned int y);

Description

Writes text in the current text panel of Glcd at coordinates (x, y).

Parameters
  • str: text to be written
  • x: text position on x-axis
  • y: text position on y-axis
Returns

Nothing.

Requires

Toshiba Glcd module needs to be initialized. See SPI_T6963C_Config routine.

Example
SPI_T6963C_Write_Text_Adv("Glcd LIBRARY DEMO, WELCOME !", 0, 0);	
Notes

None.

SPI_T6963C_Write_Const_Text_Adv

Prototype

void SPI_T6963C_Write_Const_Text_Adv(const far char *text, unsigned int x, unsigned int y);

Description

Writes text located in the program memory on the glcd at coordinates (x, y).

Parameters
  • str: text to be written
  • x: text position on x-axis
  • y: text position on y-axis
Returns

Nothing.

Requires

Toshiba Glcd module needs to be initialized. See SPI_T6963C_Config routine.

Example
const char ctext[] = "mikroElektronika";
...
SPI_T6963C_Write_Const_Text_Adv(ctext, 0, 0);
Notes

None.

SPI_T6963C_line

Prototype

void SPI_T6963C_line(int x0, int y0, int x1, int y1, unsigned char pcolor);

Returns

Nothing.

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, SPI_T6963C_WHITE and SPI_T6963C_INVERT.

Requires

Toshiba Glcd module needs to be initialized. See SPI_T6963C_Config routine.

Example
SPI_T6963C_line(0, 0, 239, 127, SPI_T6963C_WHITE);

SPI_T6963C_rectangle

Prototype

void SPI_T6963C_rectangle(int x0, int y0, int x1, int y1, unsigned char pcolor);

Returns

Nothing.

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, SPI_T6963C_WHITE and SPI_T6963C_INVERT.

Requires

Toshiba Glcd module needs to be initialized. See SPI_T6963C_Config routine.

Example
SPI_T6963C_rectangle(20, 20, 219, 107, SPI_T6963C_WHITE);

SPI_T6963C_rectangle_round_edges

Prototype

void SPI_T6963C_rectangle_round_edges(int x0, int y0, int x1, int y1, int round_radius, unsigned char pcolor);

Returns

Nothing.

Description

Draws a rounded edge 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
  • round_radius: radius of the rounded edge.
  • pcolor: color parameter. Valid values: SPI_T6963C_BLACK, SPI_T6963C_WHITE and SPI_T6963C_INVERT.

Requires

Toshiba Glcd module needs to be initialized. See SPI_T6963C_Config routine.

Example
SPI_T6963C_rectangle_round_edges(20, 20, 219, 107, 12, SPI_T6963C_WHITE);

SPI_T6963C_rectangle_round_edges_fill

Prototype

void SPI_T6963C_rectangle_round_edges_fill(int x0, int y0, int x1, int y1, int round_radius, unsigned char pcolor);

Returns

Nothing.

Description

Draws a filled rounded edge 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
  • round_radius: radius of the rounded edge
  • pcolor: color parameter. Valid values: SPI_T6963C_BLACK, SPI_T6963C_WHITE and SPI_T6963C_INVERT.

Requires

Toshiba Glcd module needs to be initialized. See SPI_T6963C_Config routine.

Example
SPI_T6963C_rectangle_round_edges_fill(20, 20, 219, 107, 12, SPI_T6963C_WHITE);

SPI_T6963C_box

Prototype

void SPI_T6963C_box(int x0, int y0, int x1, int y1, unsigned char pcolor);

Returns

Nothing.

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, SPI_T6963C_WHITE and SPI_T6963C_INVERT.

Requires

Toshiba Glcd module needs to be initialized. See SPI_T6963C_Config routine.

Example
SPI_T6963C_box(0, 119, 239, 127, SPI_T6963C_WHITE);

SPI_T6963C_circle

Prototype

void SPI_T6963C_circle(int x, int y, long r, unsigned char pcolor);

Returns

Nothing.

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, SPI_T6963C_WHITE and SPI_T6963C_INVERT.

Requires

Toshiba Glcd module needs to be initialized. See SPI_T6963C_Config routine.

Example
SPI_T6963C_circle(120, 64, 110, SPI_T6963C_WHITE);

SPI_T6963C_circle_fill

Prototype

void SPI_T6963C_circle_fill(int x, int y, long r, unsigned char pcolor);

Returns

Nothing.

Description

Draws a filled 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, SPI_T6963C_WHITE and SPI_T6963C_INVERT.

Requires

Toshiba Glcd module needs to be initialized. See SPI_T6963C_Config routine.

Example
SPI_T6963C_circle_fill(120, 64, 110, SPI_T6963C_WHITE);

SPI_T6963C_image

Prototype

void SPI_T6963C_image(const code char *pic);

Returns

Nothing.

Description

Displays bitmap on Glcd.

Parameters :

  • image: image to be displayed. Bitmap array is located in code memory.

Use the integrated Glcd Bitmap Editor (menu option Tools › Glcd Bitmap Editor) to convert image to a constant array suitable for displaying on Glcd.

  Note : Image dimension must match the display dimension.
Requires

Toshiba Glcd module needs to be initialized. See SPI_T6963C_Config routine.

Example
SPI_T6963C_image(my_image);

SPI_T6963C_Ext_Image

Prototype

void SPI_T6963C_Ext_Image(unsigned long image);

Description

Displays a bitmap from an external resource.

Parameters
  • pic: image to be displayed. This parameter represents the address in the exteral resource from where the image data begins.
Returns

Nothing.

Requires

Toshiba Glcd module needs to be initialized. See SPI_T6963C_Config routine.

Example
SPI_T6963C_Ext_image(153608);
Notes

Image dimension must match the display dimension.

Use the integrated Glcd Bitmap Editor (menu option Tools › Glcd Bitmap Editor) to convert image to a constant array suitable for displaying on Glcd.

SPI_T6963C_PartialImage

Prototype

void SPI_T6963C_PartialImage(unsigned int x_left, unsigned int y_top, unsigned int width, unsigned int height, unsigned int picture_width, unsigned int picture_height, code const unsigned short * image);

Returns

Nothing.

Description

Displays a partial area of the image on a desired location.

Parameters :

  • x_left: x coordinate of the desired location (upper left coordinate).
  • y_top: y coordinate of the desired location (upper left coordinate).
  • width: desired image width.
  • height: desired image height.
  • picture_width: width of the original image.
  • picture_height: height of the original image.
  • image: image to be displayed. Bitmap array is located in code memory.

Use the integrated Glcd Bitmap Editor (menu option Tools › Glcd Bitmap Editor) to convert image to a constant array suitable for displaying on Glcd.

  Note : Image dimension must match the display dimension.
Requires

Toshiba Glcd module needs to be initialized. See SPI_T6963C_Config routine.

Example
// Draws a 10x15 part of the image starting from the upper left corner on the coordinate (10,12). Original image size is 16x32. 
SPI_T6963C_PartialImage(10, 12, 10, 15, 16, 32, image);

SPI_T6963C_Ext_PartialImage

Prototype

void SPI_T6963C_Ext_PartialImage(unsigned int x_left, unsigned int y_top, unsigned int width, unsigned int height, unsigned int picture_width, unsigned int picture_height, unsigned long image);

Description

Displays a partial area of the image on a desired location.

Parameters
  • x_left: x coordinate of the desired location (upper left coordinate).
  • y_top: y coordinate of the desired location (upper left coordinate).
  • width: desired image width.
  • height: desired image height.
  • picture_width: width of the original image.
  • picture_height: height of the original image.
  • image: image to be displayed. This parameter represents the address in the exteral resource from where the image data begins.
Returns

Nothing.

Requires

Toshiba Glcd module needs to be initialized. See SPI_T6963C_Config routine.

Example
SPI_T6963C_Ext_PartialImage(10, 12, 10, 15, 16, 32, 0);
Notes

Image dimension must match the display dimension.

Use the integrated Glcd Bitmap Editor (menu option Tools › Glcd Bitmap Editor) to convert image to a constant array suitable for displaying on Glcd.

SPI_T6963C_sprite

Prototype

void SPI_T6963C_sprite(unsigned char px, unsigned char py, const code char *pic, unsigned char sx, unsigned char sy);

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

SPI_T6963C_set_cursor

Prototype

void SPI_T6963C_set_cursor(unsigned char x, unsigned char y);

Returns

Nothing.

Description

Sets cursor to row x and column y.

Parameters :

  • x: cursor position row number
  • y: cursor position column number

Requires

Toshiba Glcd module needs to be initialized. See SPI_T6963C_Config routine.

Example
SPI_T6963C_set_cursor(cposx, cposy);

SPI_T6963C_clearbit

Prototype

void SPI_T6963C_clearBit(char b);

Returns

Nothing.

Description

Clears control port bit(s).

Parameters :

  • b: bit mask. The function will clear bit x on control port if bit x in bit mask is set to 1.

Requires

Toshiba Glcd module needs to be initialized. See SPI_T6963C_Config routine.

Example
// clear bits 0 and 1 on control port
SPI_T6963C_clearBit(0x03);

SPI_T6963C_setBit

Prototype

void SPI_T6963C_setBit(char b);

Returns

Nothing.

Description

Sets control port bit(s).

Parameters :

  • b: bit mask. The function will set bit x on control port if bit x in bit mask is set to 1.

Requires

Toshiba Glcd module needs to be initialized. See SPI_T6963C_Config routine.

Example
// set bits 0 and 1 on control port
SPI_T6963C_setBit(0x03);

SPI_T6963C_negBit

Prototype

void SPI_T6963C_negBit(char b);

Returns

Nothing.

Description

Negates control port bit(s).

Parameters :

  • b: bit mask. The function will negate bit x on control port if bit x in bit mask is set to 1.

Requires

Toshiba Glcd module needs to be initialized. See SPI_T6963C_Config routine.

Example
// negate bits 0 and 1 on control port
SPI_T6963C_negBit(0x03);

SPI_T6963C_DisplayGrPanel

Prototype

void SPI_T6963C_displayGrPanel(char n);

Returns

Nothing.

Description

Display selected graphic panel.

Parameters :

  • n: graphic panel number. Valid values: 0 and 1.
Requires

Toshiba Glcd module needs to be initialized. See SPI_T6963C_Config routine.

Example
// display graphic panel 1
SPI_T6963C_displayGrPanel(1);

SPI_T6963C_displayTxtPanel

Prototype

void SPI_T6963C_displayTxtPanel(char n);

Returns

Nothing.

Description

Display selected text panel.

Parameters :

  • n: text panel number. Valid values: 0 and 1.
Requires

Toshiba Glcd module needs to be initialized. See SPI_T6963C_Config routine.

Example
// display text panel 1
SPI_T6963C_displayTxtPanel(1);

SPI_T6963C_setGrPanel

Prototype

void SPI_T6963C_setGrPanel(char n);

Returns

Nothing.

Description

Compute start address for selected graphic panel and set appropriate internal pointers. All subsequent graphic operations will be preformed at this graphic panel.

Parameters :

  • n: graphic panel number. Valid values: 0 and 1.
Requires

Toshiba Glcd module needs to be initialized. See SPI_T6963C_Config routine.

Example
// set graphic panel 1 as current graphic panel.
SPI_T6963C_setGrPanel(1);

SPI_T6963C_setTxtPanel

Prototype

void SPI_T6963C_setTxtPanel(char n);

Returns

Nothing.

Description

Compute start address for selected text panel and set appropriate internal pointers. All subsequent text operations will be preformed at this text panel.

Parameters :

  • n: text panel number. Valid values: 0 and 1.
Requires

Toshiba Glcd module needs to be initialized. See SPI_T6963C_Config routine.

Example
// set text panel 1 as current text panel.
SPI_T6963C_setTxtPanel(1);

SPI_T6963C_panelFill

Prototype

void SPI_T6963C_panelFill(unsigned char v);

Returns

Nothing.

Description

Fill current panel in full (graphic+text) with appropriate value (0 to clear).

Parameters :

  • v: value to fill panel with.
Requires

Toshiba Glcd module needs to be initialized. See SPI_T6963C_Config routine.

Example
clear current panel
SPI_T6963C_panelFill(0);

SPI_T6963C_grFill

Prototype

void SPI_T6963C_grFill(unsigned char v);

Returns

Nothing.

Description

Fill current graphic panel with appropriate value (0 to clear).

Parameters :

  • v: value to fill graphic panel with.
Requires

Toshiba Glcd module needs to be initialized. See SPI_T6963C_Config routine.

Example
// clear current graphic panel
SPI_T6963C_grFill(0);

SPI_T6963C_txtFill

Prototype

void SPI_T6963C_txtFill(unsigned char v);

Returns

Nothing.

Description

Fill current text panel with appropriate value (0 to clear).

Parameters :

  • v: this value increased by 32 will be used to fill text panel.
Requires

Toshiba Glcd module needs to be initialized. See SPI_T6963C_Config routine.

Example
// clear current text panel
SPI_T6963C_txtFill(0);

SPI_T6963C_cursor_height

Prototype

void SPI_T6963C_cursor_height(unsigned char n);

Returns

Nothing.

Description

Set cursor size.

Parameters :

  • n: cursor height. Valid values: 0..7.
Requires

Toshiba Glcd module needs to be initialized. See SPI_T6963C_Config routine.

Example
SPI_T6963C_cursor_height(7);

SPI_T6963C_graphics

Prototype

void SPI_T6963C_graphics(char n);

Returns

Nothing.

Description

Enable/disable graphic displaying.

Parameters :

  • n: graphic enable/disable parameter. Valid values: 0 (disable graphic dispaying) and 1 (enable graphic displaying).
Requires

Toshiba Glcd module needs to be initialized. See SPI_T6963C_Config routine.

Example
// enable graphic displaying
SPI_T6963C_graphics(1);

SPI_T6963C_text

Prototype

void SPI_T6963C_text(char n);

Returns

Nothing.

Description

Enable/disable text displaying.

Parameters :

  • n: text enable/disable parameter. Valid values: 0 (disable text dispaying) and 1 (enable text displaying).
Requires

Toshiba Glcd module needs to be initialized. See SPI_T6963C_Config routine.

Example
// enable text displaying
SPI_T6963C_text(1);

SPI_T6963C_cursor

Prototype

void SPI_T6963C_cursor(char n);

Returns

Nothing.

Description

Set cursor on/off.

Parameters :

  • n: on/off parameter. Valid values: 0 (set cursor off) and 1 (set cursor on).
Requires

Toshiba Glcd module needs to be initialized. See SPI_T6963C_Config routine.

Example
// set cursor on
SPI_T6963C_cursor(1);
Prototype

void SPI_T6963C_cursor_blink(char n);

Returns

Nothing.

Description

Enable/disable cursor blinking.

Parameters :

  • n: cursor blinking enable/disable parameter. Valid values: 0 (disable cursor blinking) and 1 (enable cursor blinking).
Requires

Toshiba Glcd module needs to be initialized. See SPI_T6963C_Config routine.

Example
// enable cursor blinking
SPI_T6963C_cursor_blink(1);

Library Example

The following drawing demo tests advanced routines of the SPI T6963C Glcd library. Hardware configurations in this example are made for the T6963C 240x128 display, EasyPIC6 board and 16F887.

Copy Code To ClipboardCopy Code To Clipboard
#include        "__SPIT6963C.h"

/*
 * bitmap pictures stored in ROM
 */
const code char mikroE_240x64_bmp[];     // PIC16F887 can't store larger picture(240x128) in ROM
const code char einstein[];

// Port Expander module connections
sbit  SPExpanderRST at RC0_bit;
sbit  SPExpanderCS  at RC1_bit;
sbit  SPExpanderRST_Direction at TRISC0_bit;
sbit  SPExpanderCS_Direction  at TRISC1_bit;
// End Port Expander module connections

void main() {
  char txt1[] = " EINSTEIN WOULD HAVE LIKED mE";
  char txt[] =  " GLCD LIBRARY DEMO, WELCOME !";

  unsigned char  panel;         // Current panel
  unsigned int   i;             // General purpose register
  unsigned char  curs;          // Cursor visibility
  unsigned int   cposx, cposy;  // Cursor x-y position
  
  #define COMPLETE_EXAMPLE      // comment this line to make simpler/smaller example
  ANSEL  = 0;                   // Configure AN pins as digital I/O
  ANSELH = 0;
  C1ON_bit = 0;                 // Disable comparators
  C2ON_bit = 0;

  TRISB0_bit = 1;               // Set RB0 as input
  TRISB1_bit = 1;               // Set RB1 as input
  TRISB2_bit = 1;               // Set RB2 as input
  TRISB3_bit = 1;               // Set RB3 as input
  TRISB4_bit = 1;               // Set RB4 as input

  // If Port Expander Library uses SPI1 module
  SPI1_Init();                                   // Initialize SPI module used with PortExpander

//  // If Port Expander Library uses SPI2 module
//  SPI2_Init();                                   // Initialize SPI module used with PortExpander

  /*
   * init display for 240 pixel width and 128 pixel height
   * 8 bits character width
   * data bus on MCP23S17 portB
   * control bus on MCP23S17 portA
   * bit 2 is !WR
   * bit 1 is !RD
   * bit 0 is !CD
   * bit 4 is RST
   * chip enable, reverse on, 8x8 font internaly set in library
   */

  SPI_T6963C_Config(240, 128, 8, 0, 2, 1, 0, 4);
  Delay_ms(1000);

  /*
   * Enable both graphics and text display at the same time
   */
  SPI_T6963C_graphics(1);
  SPI_T6963C_text(1);

  panel = 0;
  i = 0;
  curs = 0;
  cposx = cposy = 0;
  /*
   * Text messages
   */
  SPI_T6963C_write_text(txt, 0, 0, SPI_T6963C_ROM_MODE_XOR);
  SPI_T6963C_write_text(txt1, 0, 15, SPI_T6963C_ROM_MODE_XOR);

  /*
   * Cursor
   */
  SPI_T6963C_cursor_height(8);       // 8 pixel height
  SPI_T6963C_set_cursor(0, 0);       // move cursor to top left
  SPI_T6963C_cursor(0);              // cursor off
  
  /*
   * Draw rectangles
   */
  SPI_T6963C_rectangle(0, 0, 239, 127, SPI_T6963C_WHITE);
  SPI_T6963C_rectangle(20, 20, 219, 107, SPI_T6963C_WHITE);
  SPI_T6963C_rectangle(40, 40, 199, 87, SPI_T6963C_WHITE);
  SPI_T6963C_rectangle(60, 60, 179, 67, SPI_T6963C_WHITE);

  /*
   * Draw a cross
   */
  SPI_T6963C_line(0, 0, 239, 127, SPI_T6963C_WHITE);
  SPI_T6963C_line(0, 127, 239, 0, SPI_T6963C_WHITE);

  /*
   * Draw solid boxes
   */
  SPI_T6963C_box(0, 0, 239, 8, SPI_T6963C_WHITE);
  SPI_T6963C_box(0, 119, 239, 127, SPI_T6963C_WHITE);

  #ifdef COMPLETE_EXAMPLE
    /*
     * Draw circles
     */
    SPI_T6963C_circle(120, 64, 10, SPI_T6963C_WHITE);
    SPI_T6963C_circle(120, 64, 30, SPI_T6963C_WHITE);
    SPI_T6963C_circle(120, 64, 50, SPI_T6963C_WHITE);
    SPI_T6963C_circle(120, 64, 70, SPI_T6963C_WHITE);
    SPI_T6963C_circle(120, 64, 90, SPI_T6963C_WHITE);
    SPI_T6963C_circle(120, 64, 110, SPI_T6963C_WHITE);
    SPI_T6963C_circle(120, 64, 130, SPI_T6963C_WHITE);

    SPI_T6963C_sprite(76, 4, einstein, 88, 119);         // Draw a sprite

    SPI_T6963C_setGrPanel(1);                            // Select other graphic panel

    SPI_T6963C_sprite(0, 0,  mikroE_240x64_bmp, 240, 64);// 240x128 can't be stored in most of PIC16 MCUs
    SPI_T6963C_sprite(0, 64, mikroE_240x64_bmp, 240, 64);//   it is replaced with smaller picture 240x64
                                                         //   Smaller picture is drawn two times
  #endif

  for(;;) {                                              // Endless loop
    /*
     * If RB0 is pressed, display only graphic panel
     */
    if(RB0_bit) {
      SPI_T6963C_graphics(1);
      SPI_T6963C_text(0);
      Delay_ms(300);
      }
    #ifdef COMPLETE_EXAMPLE
      /*
       * If RB1 is pressed, toggle the display between graphic panel 0 and graphic panel 1
       */
      else if(RB1_bit) {
        panel++;
        panel &= 1;
        SPI_T6963C_displayGrPanel(panel);
        Delay_ms(300);
        }
    #endif
    /*
     * If RB2 is pressed, display only text panel
     */
    else if(RB2_bit) {
      SPI_T6963C_graphics(0);
      SPI_T6963C_text(1);
      Delay_ms(300);
      }

    /*
     * If RB3 is pressed, display text and graphic panels
     */
    else if(RB3_bit) {
      SPI_T6963C_graphics(1);
      SPI_T6963C_text(1);
      Delay_ms(300);
      }
    /*
     * If RB4 is pressed, change cursor
     */
    else if(RB4_bit) {
      curs++;
      if(curs == 3) curs = 0;
      switch(curs) {
        case 0:
          // no cursor
          SPI_T6963C_cursor(0);
          break;
        case 1:
          // blinking cursor
          SPI_T6963C_cursor(1);
          SPI_T6963C_cursor_blink(1);
          break;
        case 2:
          // non blinking cursor
          SPI_T6963C_cursor(1);
          SPI_T6963C_cursor_blink(0);
          break;
        }
      Delay_ms(300);
      }

    /*
     * Move cursor, even if not visible
     */
    cposx++;
    if(cposx == SPI_T6963C_txtCols) {
      cposx = 0;
      cposy++;
      if(cposy == SPI_T6963C_grHeight / SPI_T6963C_CHARACTER_HEIGHT) {
        cposy = 0;
        }
      }
    SPI_T6963C_set_cursor(cposx, cposy);

    Delay_ms(100);
    }
}

HW Connection

SPI T6963C Glcd HW connection

SPI T6963C Glcd HW connection

Copyright (c) 2002-2012 mikroElektronika. All rights reserved.
What do you think about this topic ? Send us feedback!
Want more examples and libraries? 
Find them on LibStock - A place for the code