Example #1
0
void ram(void){
  if (lcdShowImageFile("nick.lcd") != 0) {
    lcdClear();
    lcdNl();
    lcdPrintln("File nick.lcd");
    lcdPrintln("not present.");
    lcdNl();
    lcdDisplay();
  }
}
Example #2
0
void ram(void){
    lcdShowImageFile("nick.lcd");
}
Example #3
0
//# MENU image display_image
void t_img(void){
    char fname[FLEN];
    selectFile(fname, "LCD");
    lcdShowImageFile(fname);
    getInputWait();
}