Glcd drawString()

Writes a string of characters 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.drawString(byte x, byte y, const char *c);

Parameters

x

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

y

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

*c

Pointer to the character string in program EEPROM. ASCII characters 0 to 127 are supported by the default 5x7 font.