Graphic display sample code NHD-12864WX-T1TFH.
/*****************************************************/ /* NHD-12864WX-T.c Program for writing to Newhaven Display graphic TAB (c)2008 Newhaven Display International, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. */ /*****************************************************/ #include <REG52.H> #include "picture.h" /*****************************************************/ sbit CS1 = P3^0; //Chip select sbit CS2 = P3^7; //Chip select sbit A0 = P3^1; //Data/Instruction Register select sbit WR1 = P3^6; //Write sbit RD1 = P3^2; //Read sbit C86 = P3^5; //MPU Select I80 sbit RES = P3^4; //Reset sbit PS1 = P3^3; //Chip select /*****************************************************/ void delay(unsigned int n) //Delay subroutine { unsigned int i,j; for (i=0;i<n;i++) for (j=0;j<350;j++) {;} } /*****************************************************/ void data_out(unsigned char i) //Data Output 8-bit parallel Interface { A0 = 1; //Data register WR1 = 0; //Write enable P1 = i; //put data on port 1 WR1 = 1; //Clock in data } void comm_out(unsigned char i) //Command Output 8-bit parallel Interface { A0 = 0; //Instruction register WR1 = 0; //Write enable P1 = i; //put data on port 1 WR1 = 1; //Clock in data } /*****************************************************/ void dispPic(unsigned char *lcd_string) //show bitmap, 128x64pixels { int i,j; char page = 0xB0; //0xB0 = first page for(i=0;i<8;i++){ //8 pages per screen comm_out(page); //set page address comm_out(0x00); //set column address high comm_out(0x10); //set column address low for(j=0;j<128;j++){ //Write 128pixels/line data_out(*lcd_string); //send data to display lcd_string++; //point to next byte of picture data } page++; //move to next page } } /**************************************************** * Initialization For NT7534H * *****************************************************/ void resetLCD() { RES = 0; delay(100); RES = 1; delay(100); } void init_LCD() { CS1 = 0; //Chip Select CS2 = 1; //Chip Select RD1 = 1; //Read disable comm_out(0xA2); //1/9 bias comm_out(0xA0); //ADC select comm_out(0xC8); //COM output reverse comm_out(0xA4); //display all points normal comm_out(0x40); //display start line set comm_out(0x25); //internal resistor ratio comm_out(0x81); //electronic volume mode set comm_out(0x18); //electronic volume comm_out(0x2F); //power controller set comm_out(0xAF); //display on } /*****************************************************/ /*****************************************************/ int main(void) { P1 = 0; P3 = 1; PS1 = 1; //Parallel interface C86 = 0; //Intel8080 resetLCD(); init_LCD(); while(1) //continue { dispPic(picture1); //show logo delay(2000); dispPic(picture2); //show picture delay(2000); dispPic(picture3); //show picture delay(2000); dispPic(picture4); //show picture delay(2000); } } /* End of c file *************************/ /*****************************************************/ /*****************************************************/ /*****************************************************/ /*****************************************************/ /* picture.h file *************************/ #ifndef picture_H #define picture_H code char picture1[]={ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0xC0, 0xc0,0xc0,0xc0,0x80,0x00,0x00,0x1e,0x3e,0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0x7f, 0x7f,0x3f,0x1e,0x8e,0x8e,0xce,0xee,0xee,0xee,0xee,0xee,0xee,0xee,0xee,0xee,0xee, 0xee,0xee,0xee,0xee,0xee,0xee,0xee,0xee,0xee,0xee,0xee,0xee,0xee,0xee,0xee,0xee, 0xee,0xee,0xee,0xee,0xee,0xee,0xee,0xee,0xee,0xee,0xee,0xee,0xee,0xee,0xee,0xee, 0xee,0xee,0xee,0xee,0xee,0xee,0xee,0xee,0xee,0xee,0xee,0xee,0xee,0xee,0xee,0xee, 0xee,0xee,0xee,0xee,0xee,0xee,0xee,0xee,0xee,0xee,0xee,0xee,0xee,0xee,0xee,0xee, 0xee,0xee,0xee,0xee,0xee,0xee,0xee,0xee,0xee,0xee,0xee,0xee,0xee,0x00,0x00,0x00, 0x00,0x00,0x80,0xc0,0xc0,0xe0,0xe0,0xe0,0xc0,0x80,0x80,0x1e,0x3f,0x7f,0x7f,0xff, 0xff,0xff,0xff,0xff,0x7f,0x3e,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x1c, 0x9e,0x8e,0x8e,0xf3,0x73,0x71,0x79,0x3d,0x1e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e, 0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e, 0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e, 0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e, 0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e, 0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x00,0x00,0x00, 0x00,0x0f,0x0f,0x1f,0x3f,0x3f,0x3f,0x3f,0x3f,0x1f,0x0f,0x0e,0x0e,0x0e,0x0e,0x0e, 0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e, 0x0f,0x07,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfc, 0x08,0x30,0xc0,0x00,0x00,0xfc,0x00,0x00,0xc0,0x20,0x20,0x20,0xc0,0x00,0x60,0x80, 0x00,0x80,0x60,0x80,0x00,0x80,0x60,0x00,0xfc,0x40,0x20,0x20,0xc0,0x00,0x00,0x40, 0x20,0x20,0x20,0xc0,0x00,0x60,0x80,0x00,0x80,0x60,0x00,0xc0,0x20,0x20,0x20,0xc0, 0x00,0x00,0xe0,0x40,0x20,0x20,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x04,0x04, 0x04,0x04,0x08,0xf0,0x00,0x00,0xe4,0x00,0x00,0xc0,0x20,0x20,0x20,0x40,0x00,0x00, 0xe0,0x40,0x20,0x20,0xc0,0x00,0x00,0xfc,0x00,0x00,0x40,0x20,0x20,0x20,0xc0,0x00, 0x00,0x60,0x80,0x00,0x80,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f, 0x00,0x00,0x00,0x03,0x04,0x0f,0x00,0x00,0x07,0x09,0x09,0x09,0x05,0x00,0x00,0x03, 0x0c,0x03,0x00,0x03,0x0c,0x03,0x00,0x00,0x0f,0x00,0x00,0x00,0x0f,0x00,0x00,0x06, 0x09,0x09,0x05,0x0f,0x00,0x00,0x03,0x0c,0x03,0x00,0x00,0x07,0x09,0x09,0x09,0x05, 0x00,0x00,0x0f,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x08,0x08, 0x08,0x08,0x04,0x03,0x00,0x00,0x0f,0x00,0x00,0x04,0x09,0x09,0x09,0x06,0x00,0x00, 0x7f,0x04,0x08,0x08,0x07,0x00,0x00,0x0f,0x00,0x00,0x06,0x09,0x09,0x05,0x0f,0x00, 0x00,0x40,0x43,0x3c,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x80,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x80,0x80,0x00,0x00, 0x00,0x00,0x00,0x00,0x80,0x80,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x80,0x00,0x00,0x00,0x00, 0x80,0x80,0x80,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7e, 0x81,0x00,0x00,0x00,0x81,0x42,0x00,0x00,0x7e,0x81,0x00,0x00,0x00,0x00,0x81,0x7e, 0x00,0x00,0x7e,0x81,0x00,0x00,0x10,0x10,0x91,0x72,0x00,0x00,0x00,0x00,0x00,0x00, 0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x7e,0x81,0x00,0x00,0x00,0x81,0x42,0x00,0x00, 0xff,0x00,0x00,0x00,0x00,0x81,0x7e,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x03,0x0c, 0x70,0x80,0x70,0x0c,0x03,0xff,0x00,0x00,0xf8,0x04,0x04,0x04,0xf8,0x00,0x00,0xf8, 0x04,0x04,0x08,0xff,0x00,0x00,0xfc,0x00,0x00,0x00,0xfc,0x00,0x00,0xff,0x00,0x00, 0xf8,0x24,0x24,0x24,0xb8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00, 0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00, 0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00, 0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00, 0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x01,0x00,0x00, 0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, }; code char picture2[]={ 0x00,0x00,0x00,0x00,0x00,0x7f,0x3e,0x1c,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x06,0x18,0x3f,0x00,0x1c,0x22,0x22, 0x1c,0x00,0x1e,0x20,0x1e,0x20,0x1e,0x00,0x00,0x3f,0x09,0x0f,0x00,0x3f,0x00,0x32, 0x2a,0x2a,0x3e,0x00,0x1e,0xe0,0x1e,0x00,0x3d,0x00,0x3e,0x04,0x3c,0x00,0x9c,0xa2, 0xa2,0x7e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3e, 0x3e,0x3e,0x3e,0x32,0x22,0x2e,0x32,0x22,0x22,0x36,0x1c,0x00,0x00,0x00,0x00,0x00, 0x01,0x01,0x01,0x11,0xf9,0x01,0x01,0x01,0xe1,0x11,0x11,0xe1,0x21,0xf1,0x29,0x01, 0x01,0x01,0xd1,0x29,0x29,0xd1,0x01,0xf1,0x09,0x09,0xf1,0x01,0xf1,0x09,0x09,0xf1, 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x01,0x00,0x00, 0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x01,0x01,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x7e,0x4a,0x4a,0x3c,0x00,0x3c,0x42,0x42,0x42,0x3c,0x00,0x2c,0x4a,0x52,0x52,0x34, 0x00,0x7e,0x4a,0x4a,0x4a,0x00,0x00,0x3c,0x42,0x42,0x42,0x24,0x00,0x38,0x44,0x44, 0x38,0x00,0x7c,0x04,0x00,0xfc,0x44,0x44,0x38,0x00,0x38,0x44,0x44,0x38,0x00,0x7c, 0x04,0x00,0x64,0x54,0x54,0x7c,0x00,0x04,0x7e,0x44,0x00,0x7a,0x00,0x38,0x44,0x44, 0x38,0x00,0x7c,0x08,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf0,0x00,0xe0,0x40,0xc0,0x00,0x20, 0xf0,0x20,0x00,0xe0,0x20,0x01,0xc0,0x20,0x20,0xc0,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x03,0x00,0x03,0x00,0x00, 0x03,0x02,0x00,0x03,0x00,0x00,0x01,0x02,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x3e,0x3e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e, 0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x62,0x62,0x62, 0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62, 0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62, 0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62, 0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62, 0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62, 0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x7e,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x3c,0x42,0x42,0x3c,0x00,0x44,0x00,0x3c,0x42,0x42,0x3c,0x00, 0x24,0x42,0x4a,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3c,0x42,0x42, 0x3c,0x00,0x44,0x00,0x04,0x7e,0x00,0x44,0x62,0x52,0x4c,0x00,0x00,0x00,0x00,0x00, }; code char picture3[]={ 0x00,0x00,0x00,0x00,0x00,0x7f,0x3e,0x1c,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x06,0x18,0x3f,0x00,0x1c,0x22,0x22, 0x1c,0x00,0x1e,0x20,0x1e,0x20,0x1e,0x00,0x00,0x3f,0x09,0x0f,0x00,0x3f,0x00,0x32, 0x2a,0x2a,0x3e,0x00,0x1e,0xe0,0x1e,0x00,0x3d,0x00,0x3e,0x04,0x3c,0x00,0x9c,0xa2, 0xa2,0x7e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3e, 0x3e,0x3e,0x3e,0x32,0x22,0x2e,0x32,0x22,0x22,0x36,0x1c,0x00,0x00,0x00,0x00,0x00, 0x01,0x01,0x01,0x11,0xf9,0x01,0x01,0x01,0xe1,0x11,0x11,0xe1,0x21,0xf1,0x29,0x01, 0x01,0x01,0xd1,0x29,0x29,0xd1,0x01,0xf1,0x09,0x09,0xf1,0x01,0xf1,0x09,0x09,0xf1, 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x01,0x00,0x00, 0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x01,0x01,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x7e,0x4a,0x4a,0x3c,0x00,0x3c,0x42,0x42,0x42,0x3c,0x00,0x2c,0x4a,0x52,0x52,0x34, 0x00,0x7e,0x4a,0x4a,0x4a,0x00,0x00,0x3c,0x42,0x42,0x42,0x24,0x00,0x38,0x44,0x44, 0x38,0x00,0x7c,0x04,0x00,0xfc,0x44,0x44,0x38,0x00,0x38,0x44,0x44,0x38,0x00,0x7c, 0x04,0x00,0x64,0x54,0x54,0x7c,0x00,0x04,0x7e,0x44,0x00,0x7a,0x00,0x38,0x44,0x44, 0x38,0x00,0x7c,0x08,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf0,0x00,0xe0,0x40,0xc0,0x00,0x20, 0xf0,0x20,0x00,0xe0,0x20,0x01,0xc0,0x20,0x20,0xc0,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x03,0x00,0x03,0x00,0x00, 0x03,0x02,0x00,0x03,0x00,0x00,0x01,0x02,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x3e,0x3e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e, 0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e, 0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62, 0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62, 0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62, 0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62, 0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62, 0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x7e,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x3c,0x42,0x42,0x3c,0x00,0x44,0x00,0x3c,0x42,0x42,0x3c,0x00, 0x18,0x14,0x7e,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3c,0x42,0x42, 0x3c,0x00,0x44,0x00,0x04,0x7e,0x00,0x44,0x62,0x52,0x4c,0x00,0x00,0x00,0x00,0x00, }; code char picture4[]={ 0x00,0x00,0x00,0x00,0x00,0x7F,0x3E,0x1C,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x06,0x18,0x3f,0x00,0x1c,0x22,0x22, 0x1c,0x00,0x1e,0x20,0x1e,0x20,0x1e,0x00,0x00,0x3f,0x09,0x0f,0x00,0x3f,0x00,0x32, 0x2a,0x2a,0x3e,0x00,0x1e,0xe0,0x1e,0x00,0x3d,0x00,0x3e,0x04,0x3c,0x00,0x9c,0xa2, 0xa2,0x7e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3e, 0x3e,0x3e,0x3e,0x32,0x22,0x2e,0x32,0x22,0x22,0x36,0x1c,0x00,0x00,0x00,0x00,0x00, 0x01,0x01,0x01,0x11,0xf9,0x01,0x01,0x01,0xe1,0x11,0x11,0xe1,0x21,0xf1,0x29,0x01, 0x01,0x01,0xd1,0x29,0x29,0xd1,0x01,0xf1,0x09,0x09,0xf1,0x01,0xf1,0x09,0x09,0xf1, 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x01,0x00,0x00, 0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x01,0x01,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x7e,0x4a,0x4a,0x3c,0x00,0x3c,0x42,0x42,0x42,0x3c,0x00,0x2c,0x4a,0x52,0x52,0x34, 0x00,0x7e,0x4a,0x4a,0x4a,0x00,0x00,0x3c,0x42,0x42,0x42,0x24,0x00,0x38,0x44,0x44, 0x38,0x00,0x7c,0x04,0x00,0xfc,0x44,0x44,0x38,0x00,0x38,0x44,0x44,0x38,0x00,0x7c, 0x04,0x00,0x64,0x54,0x54,0x7c,0x00,0x04,0x7e,0x44,0x00,0x7a,0x00,0x38,0x44,0x44, 0x38,0x00,0x7c,0x08,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf0,0x00,0xe0,0x40,0xc0,0x00,0x20, 0xf0,0x20,0x00,0xe0,0x20,0x01,0xc0,0x20,0x20,0xc0,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x03,0x00,0x03,0x00,0x00, 0x03,0x02,0x00,0x03,0x00,0x00,0x01,0x02,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x3e,0x3e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e, 0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e, 0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e, 0x7e,0x7e,0x7e,0x7e,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62, 0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62, 0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62, 0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62, 0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x7e,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x3c,0x42,0x42,0x3c,0x00,0x44,0x00,0x3c,0x42,0x42,0x3c,0x00, 0x4e,0x4a,0x4a,0x7a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3c,0x42,0x42, 0x3c,0x00,0x44,0x00,0x04,0x7e,0x00,0x44,0x62,0x52,0x4c,0x00,0x00,0x00,0x00,0x00, }; #endif /* End of .h file *************************/ /*****************************************************/ /*****************************************************/ /*****************************************************/ /*****************************************************/