Glcd display()
This function forces the data in the display RAM to be copied to the LCD panel.
#include "GLCD_ST7565.h"
#include <Ports.h>
#include <RF12.h> // needed to avoid a linker error :(
GLCD_ST7565 glcd;
glcd.display();
Parameters
None.
Notes
By default all changes to the display RAM are tracked, and display will only copy the pixels that have changed. This greatly speeds up screen updates. See updateDisplayArea() if you wish to manually specify which area to update.