Glcd drawChar()

Writes a single character into the display RAM. The default font is 5 pixels wide by 7 pixels high. An additional 1 pixel is added to the right and below each character for padding.

#include "GLCD_ST7565.h"
#include <Ports.h>
#include <RF12.h> // needed to avoid a linker error :(

GLCD_ST7565 glcd;
glcd.drawChar(byte x, byte y, char c);

Parameters

x

0-127, The x coordinate of the left hand edge of the character.

y

0-63, The y coordinate of the top edge of the character.

char

The character to be written. ASCII characters 0 to 127 are supported by the default 5x7 font.