Guide program for display oled I2C 128x64

Dependencies:   mbed Adafruit_GFX

Files at this revision

API Documentation at this revision

Comitter:
jportela
Date:
Fri Jul 09 01:44:09 2021 +0000
Parent:
14:2fc2f14f5f86
Commit message:
I created this program in order to contribute to the mbed community and anyone who is starting out in the programming of microcontrollers in mbed, besides helping those in Spanish speaking

Changed in this revision

Adafruit_GFX.lib Show annotated file Show diff for this revision Revisions of this file
funsiones_pantalla_oled.cpp Show annotated file Show diff for this revision Revisions of this file
imagen.h Show annotated file Show diff for this revision Revisions of this file
main.cpp Show diff for this revision Revisions of this file
--- a/Adafruit_GFX.lib	Wed Sep 25 15:57:32 2019 +0000
+++ b/Adafruit_GFX.lib	Fri Jul 09 01:44:09 2021 +0000
@@ -1,1 +1,1 @@
-http://developer.mbed.org/users/kaizen/code/Adafruit_GFX/#3112550cc6a3
+https://os.mbed.com/users/jportela/code/Adafruit_GFX/#e97cd4d2a37b
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/funsiones_pantalla_oled.cpp	Fri Jul 09 01:44:09 2021 +0000
@@ -0,0 +1,611 @@
+
+ 
+/**********************************************************************
+Nota:
+
+este progra es realizado por julian camilo portela gonzalez de la universidad distrital
+fransisco jose de caldas de bogota colombia. identificado con codigo estudiantil 20192573046
+
+en este proyecto procurare hacer uso de todas las funsiones de una pantalla oled monocromatica 
+usando la libreria Adafruit_GFX y Adafruit_SSD1306_I2C para la pantalla de oled de direccion 0x78 con conexion I2C con dimensiones 128 de largo y 64 de ancho
+este trabajo sera una contribucion para la comunidad de MBED y su uso libre.
+solo hare uso de las funsiones para dar una brebe explicacion de estas.
+
+para el uso de esta pantalla se uso el micro controlador STM32F411  Nucleo-64
+**************************************************************************/
+
+// inclujsion de librerias
+#include "mbed.h"
+#include "Adafruit_GFX.h"
+#include "Adafruit_GFX_Config.h"
+#include "Adafruit_SSD1306.h"
+#include "imagen.h"
+#include "time.h"
+
+       
+           
+DigitalOut myled_R(LED3); //led de HMC
+
+I2C i2c(D14,D15); // puerto de source data y puerto source cloke para el formato de coneccion I2C
+
+Adafruit_SSD1306_I2c myOled(i2c,NC,0x78,64,128); // puertos I2C, reset, nombre de la pantalla en este caso puede ser 0x78 o 0x7A, alto y ancho
+
+
+
+/* Nota:
+* el tamaño de la letra 1 da para 8 pixeles por caracter 
+* el tamaño de la letra 2 da para 16 pixeles por caracter
+*/
+
+/***********************
+ nota: siempre que halla un virtual void es necesario hacer la declaracion de 
+   #ifdef GFX_WANT_ABSTRACTS    esto en caso de ser sizetext es decir tamaño de texto
+   #define GFX_SIZEABLE_TEXT  
+    #end if 
+    
+     
+           #ifdef GFX_WANT_ABSTRACTS
+           #define GFX_WANT_ABSTRACTS   en la malloria de funsiones esta es la declaracion indicada
+           #define BLACK 0
+           #define WHITE 1
+           #endif
+****************/
+
+// nota: para la explicacion del bitmap ubicarse en el archivo imagen
+
+
+
+int main()
+{   
+
+// variables que se imprimen en la pantalla no necesitan convertirse a 16+ bits.
+    uint16_t x=0;
+    uint16_t z=0;
+    uint16_t RAN=0;
+    
+    uint8_t pos=60; //variable para localizacion de una caracter especifico que nosotros declaremos 
+
+    bool af=true;  //variable buleana para el uso de while
+    bool tx=true;  // variable buleana para el uso del texto
+    int y=0;       // varuiable de cambio para los if
+    int w=1;     // tiempo de espera general 
+    int w1=1;      // tiempo de espera para imagenes
+    
+    
+    // estas variables usan la funsion rand para obtener un numero alaetoreo
+
+    srand (time(NULL));   // inicializa la velociadad del conteo
+
+  
+    int v1= (rand() % 100)/10;         // v1 esta en un rango de 0 to 99 y si se divide en 10 esat a un rango de 0 a 9
+    int v2= (rand() % 100)/10;
+    int v3= (rand() % 100)/10;
+    int v4= v1+v2+v3; // un numero emntre 0 y 27
+         
+    char C;  // variable usada para dibujar una letra u numero
+    
+    //vector con las contantes CHAR para la funsion de DrawChar        
+    char L[26]={'A', 'B', 'C', 'D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z'};    
+         
+    myOled.begin(); // inicializo la pantalla oled
+    myOled.setTextCursor (0,1); //ubicar el cursor para los textos
+    
+   #ifdef GFX_WANT_ABSTRACTS
+   #define GFX_SIZEABLE_TEXT  
+    myOled.setTextSize(2);//establece el tamaño del texto. nota explicativa al comienzo
+
+     
+    //imprime %u para el ancho (width) y el segundo imprime %u alto (height)
+    myOled.printf("%u %u \ncuenta by julian\r\n", myOled.width(), myOled.height());
+    
+    myOled.display();  //dibuja en la pantalla todas las ordenes que le hallamos otorgado
+    wait(0.8);   // funcion de espera o retraso
+     #endif
+    myOled.clearDisplay(); /// limpia la pantalla
+     
+     
+    #ifdef GFX_WANT_ABSTRACTS
+   #define GFX_SIZEABLE_TEXT 
+     
+     myOled.setTextSize(1);
+     
+      #endif
+     
+    while(af)
+    {
+         
+        
+        //inicia el ciclo de tiempos para trabajar 
+        x=0;
+        RAN = v4;
+        
+        myOled.writeChar(pos); // se uso para indicar una posicion especifica de la pantalla oled y escribir algo concreto
+        myOled.printf(" \r :3 \r");
+        myOled.display();
+        
+        for(int i=0; i<20; i++){ //cantidad de veces q cuenta antes de hacer alguna accion
+        
+        myled_R = !myled_R;  //led de la placa ST
+        myOled.setTextWrap(tx); // establece el modo de texto como verdadero o falso 
+        myOled.setTextCursor (54,20);//alinea el texto
+        myOled.printf("%u\r",x);//imprime el conteo 
+        myOled.setTextCursor (2,2);
+        myOled.setTextColor(0,1);// se usa para resaltar el texto y sus componentes son color del texto y fondo repectivamente
+        // myOled.setTextColor(0);  se usa para dar un color especifico al texto 1 blanco, 0 negro el cual puede confundirse tanto el texto como el fondo con este comando 
+        myOled.printf(" \n el numero aleatoreo es: %u\r",RAN);// imprime el numero random que carga anteriormente 
+        myOled.display();//imprime todas las intrucciones de la pantalla
+        x = x + 1;        // variable para la cuenta en pantalla          
+        wait(0.001);
+        myOled.setTextColor(1,0);
+        
+      
+        
+        
+        if(x==5){
+            myOled.clearDisplay();
+            myOled.setTextCursor (0,1);  // indicamos a la pantalla donde iniciar a dibujar 
+            myOled.printf(" \nla cuenta es %u\r",z); //inicia una cuenta de ciclos
+            myOled.display();
+            z=z+1; // variable q se suma en pantalla cada vez que la cuanta alcanza el numero 5
+            x=0;  // reinicia la varible de la cuenta a 0
+            y=y+1;
+            }
+            if(y==3){
+              
+              // dibuja un pixel en el centro    
+                myOled.clearDisplay(); 
+                myOled.drawPixel(myOled.width()/2, myOled.height()/2,1);      
+                myOled.display();
+                 wait(w);   // tiempo de espera antes de acabar la accion           
+                myOled.clearDisplay();   
+           
+           //dibuja una rectangulo con el tamaño que yo quiero 
+     
+           #ifdef GFX_WANT_ABSTRACTS   //inicia la declaracion del objeto
+           #define GFX_WANT_ABSTRACTS  // defino que clase de objeto es 
+           #define BLACK 0       //defino objetos con variable definida
+           #define WHITE 1
+           int a,l;
+           a=20;
+           l=20;
+            myOled.drawRect((myOled.width()-a)/2, (myOled.height()-l)/2,a,l,WHITE);  //punto en x, punto en y, ancho, largo y color
+            myOled.display();
+            #endif   // termino la declaracion
+             wait(w);
+              // rellena el rectangulo de la forma que yo quiera 
+           #ifdef GFX_WANT_ABSTRACTS
+           #define GFX_WANT_ABSTRACTS
+           #define BLACK 0
+           #define WHITE 1
+           a=20;
+           l=20;
+                myOled.fillRect((myOled.width()-a)/2, (myOled.height()-l)/2,a,l, WHITE); //punto en x, punto en y, ancho, largo y color
+                myOled.display();
+                #endif 
+                wait(w);
+                myOled.clearDisplay();
+            
+            //dibuja la ciecunferencia de un circulo ubicado donde yo quiera del radio que yo quiera
+            
+           #ifdef GFX_WANT_ABSTRACTS
+           #define GFX_WANT_ABSTRACTS
+           #define BLACK 0
+           #define WHITE 1
+                myOled.drawCircle(myOled.width()/2, myOled.height()/2, 10, WHITE);
+                myOled.display();
+                #endif 
+               wait(w);
+                
+                // rellena el circulo de la forma que yo quiera 
+           #ifdef GFX_WANT_ABSTRACTS
+           #define GFX_WANT_ABSTRACTS
+           #define BLACK 0
+           #define WHITE 1
+                myOled.fillCircle(myOled.width()/2, myOled.height()/2, 10, WHITE);
+                myOled.display();
+                #endif 
+                wait(w);
+                myOled.clearDisplay();
+                
+                 //dibuja el perimetro de un triangulo ubicado donde yo quiera del tamaño que yo quiera
+           #ifdef GFX_WANT_ABSTRACTS
+           #define GFX_WANT_ABSTRACTS
+           #define BLACK 0
+           #define WHITE 1
+                myOled.drawTriangle(myOled.width()/2, 1, myOled.width()/4, 20,(myOled.width()*3)/4, 20, WHITE);// se agrupa por cordenada(x,y)p1, cordenada (x1,y1)p2,  y cordenada (x2,y2)p3 
+                myOled.display();
+                #endif 
+                wait(w);
+               // rellena el triangulo de la forma que yo quiera 
+           #ifdef GFX_WANT_ABSTRACTS
+           #define GFX_WANT_ABSTRACTS
+           #define BLACK 0
+           #define WHITE 1
+                myOled.fillTriangle((myOled.width()*3)/4,20,myOled.width()/4,20,(myOled.width())/2,1,WHITE);// para rellenar se ubica al reves los puntos cordenada (x2,y2)p3, cordenada (x1,y1)p2 y el cordenada (x,y)p1
+                myOled.display();
+                #endif 
+                wait(w);
+                myOled.clearDisplay();
+                
+                //dibuja la circunferencia de un circulo ubicado en un espacio que  yo quiera del tamaño que yo quiera
+           #ifdef GFX_WANT_ABSTRACTS
+           #define GFX_WANT_ABSTRACTS
+           #define BLACK 0
+           #define WHITE 1
+                myOled.drawRoundRect(1,1, 40, 40, 30, WHITE);// 
+                myOled.display();
+                #endif 
+                wait(w);
+             // rellena el circulo dentro del espacio del radio que yo quiera y la forma que yo quiera 
+           #ifdef GFX_WANT_ABSTRACTS
+           #define GFX_WANT_ABSTRACTS
+           #define BLACK 0
+           #define WHITE 1
+                myOled.fillRoundRect(1,1,40,40,20,WHITE);// para rellenar se ubica al reves los puntos cordenada (x2,y2)p3, cordenada (x1,y1)p2 y el cordenada (x,y)p1
+                myOled.display();
+                #endif 
+                wait(w);
+                myOled.clearDisplay();
+                
+                //dibuja una linea con la inclinacion que yo indique
+                
+           #ifdef GFX_WANT_ABSTRACTS
+           #define GFX_WANT_ABSTRACTS
+           #define BLACK 0
+           #define WHITE 1
+                myOled.drawLine(5,5,30,10,WHITE);
+                
+                myOled.display();
+                #endif 
+                wait(w);
+                myOled.clearDisplay();    
+                
+                //dibuja una linea recta horizontal dede donde le indique
+                
+           #ifdef GFX_WANT_ABSTRACTS
+           #define GFX_WANT_ABSTRACTS
+           #define BLACK 0
+           #define WHITE 1
+                myOled.drawFastHLine(5,5,50,WHITE);
+                
+                myOled.display();
+                #endif 
+                wait(w);
+                myOled.clearDisplay();   
+                
+                 //dibuja una linea recta horizontal dede donde le indique
+                
+           #ifdef GFX_WANT_ABSTRACTS
+           #define GFX_WANT_ABSTRACTS
+           #define BLACK 0
+           #define WHITE 1
+                myOled.drawFastVLine(5,5,50,WHITE);
+                
+                myOled.display();
+                #endif 
+                wait(w);
+                myOled.clearDisplay();  
+                
+                //rellena la pantalla con el color que quiero
+                
+           #ifdef GFX_WANT_ABSTRACTS
+           #define GFX_WANT_ABSTRACTS
+           #define BLACK 0
+           #define WHITE 1
+                myOled.fillScreen(WHITE);
+                myOled.display();
+                #endif 
+                wait(w);
+                
+           #ifdef GFX_WANT_ABSTRACTS
+           #define GFX_WANT_ABSTRACTS
+           #define BLACK 0
+           #define WHITE 1
+                myOled.fillScreen(BLACK);
+                myOled.display();
+                #endif 
+                wait(w);
+                myOled.clearDisplay();  
+                
+                //dibuja una letra en la ubicacion que pongamos
+                
+           #ifdef GFX_WANT_ABSTRACTS
+           #define GFX_WANT_ABSTRACTS
+           #define BLACK 0
+           #define WHITE 1
+           
+           C= L[v4];
+           
+                myOled.drawChar(5, 5,C,WHITE,BLACK,5);
+                myOled.display();
+                #endif 
+                wait(w);
+                myOled.clearDisplay();  
+                     
+                       //dibuja una imagen deacuerdo a un mapa en numeros hexdecimales
+                
+           #ifdef GFX_WANT_ABSTRACTS
+           #define GFX_WANT_ABSTRACTS
+           #define BLACK 0
+           #define WHITE 1
+                 /** 
+                 se compone de ubicacion en x y ubicacion en y para comensar el trasado,
+                 el nombre del bitmap a dibujar previamente diseñado o llamado desde otra funcion de extencion .h,
+                 se otorga el alto y el ancho, luego especificamos el color de la imagen  
+                 
+                 en lo posible definir el tamaño de la imagen ingresada en el archivo de la imagen y
+                 colocar el mismo tamaño en la funsion de drawbitmap
+                   **/
+                myOled.drawBitmap(0,0,myBitmap1,128,64,WHITE);
+                
+                myOled.display();
+                #endif 
+                wait(w1);
+                myOled.clearDisplay();  
+                
+                    //-------------------------------//
+                
+           #ifdef GFX_WANT_ABSTRACTS
+           #define GFX_WANT_ABSTRACTS
+           #define BLACK 0
+           #define WHITE 1
+                
+                myOled.drawBitmap(0,0,myBitmap2,128,64,WHITE);
+                
+                myOled.display();
+                #endif 
+                wait(w1);
+                myOled.clearDisplay();   
+                
+                //----------------//
+                
+           #ifdef GFX_WANT_ABSTRACTS
+           #define GFX_WANT_ABSTRACTS
+           #define BLACK 0
+           #define WHITE 1
+                
+                myOled.drawBitmap(0,0,myBitmap3,128,64,WHITE);
+                
+                myOled.display();
+                #endif 
+                wait(w1);
+                myOled.clearDisplay();  
+                    
+                       //----------------//
+                
+           #ifdef GFX_WANT_ABSTRACTS
+           #define GFX_WANT_ABSTRACTS
+           #define BLACK 0
+           #define WHITE 1
+                
+                myOled.drawBitmap(0,0,myBitmap4,128,64,WHITE);
+                
+                myOled.display();
+                #endif 
+                wait(w1);
+                myOled.clearDisplay();   
+                
+                
+                //-------------------------------//
+                
+                #ifdef GFX_WANT_ABSTRACTS
+           #define GFX_WANT_ABSTRACTS
+           #define BLACK 0
+           #define WHITE 1
+                
+                myOled.drawBitmap(0,0,myBitmap6,128,64,WHITE);
+                
+                myOled.display();
+                #endif 
+                wait(w1);
+                myOled.clearDisplay();   
+                
+                 //----------------//
+                
+                #ifdef GFX_WANT_ABSTRACTS
+           #define GFX_WANT_ABSTRACTS
+           #define BLACK 0
+           #define WHITE 1
+                
+                myOled.drawBitmap(0,0,myBitmap5,124,64,WHITE);
+                
+                myOled.display();
+                #endif 
+                wait(w1);
+                myOled.clearDisplay();   
+                
+                /********************************
+                
+                uint8_t getRotation(void);
+                esta funsion lee la rotacion de una imagen q hallamos puesto y podemos ponerlo en pantalla 
+                ***************************************/
+                 uint8_t ro;
+                 
+                 #ifdef GFX_WANT_ABSTRACTS
+           #define GFX_WANT_ABSTRACTS
+           #define BLACK 0
+           #define WHITE 1
+                
+                myOled.drawBitmap(0,0,myBitmap5,124,64,WHITE);
+                
+                myOled.display();
+                #endif 
+                 ro = myOled.getRotation();
+                 x=ro;
+                wait(w1);
+                myOled.clearDisplay();   
+
+            myOled.setTextCursor (0,1);  
+            myOled.printf(" \nla rotacion es %u\r",x); 
+            myOled.display();
+            x=0;  
+                
+                wait(w);
+                myOled.clearDisplay(); 
+                
+                //funcion de rotacion de una imagen o instruccion de la pantalla
+                /*****************************************
+                
+                para usar la funsion setRotation se usan los valores de un enum
+                los cuales son 1,2,3,4 los cuales equivalen a los grados de rotacion de la pantalla
+                usare esta imagen para mostrar como se hace usare el 2
+                
+                
+                ************************************/
+                uint8_t  an=1; //90° 
+                myOled.setRotation(an);
+                wait(w);
+                
+                
+           #ifdef GFX_WANT_ABSTRACTS
+           #define GFX_WANT_ABSTRACTS
+           #define BLACK 0
+           #define WHITE 1
+                
+                myOled.drawBitmap(0,0,myBitmap5,124,64,WHITE);
+                
+                myOled.display();
+                #endif 
+                  ro = myOled.getRotation();
+                 x=ro;
+                wait(w1);
+                myOled.clearDisplay();   
+                
+            myOled.setTextCursor (0,1);  
+            myOled.printf(" \nla rotacion es %u\r",x); 
+            myOled.display();
+            x=0;  
+                 wait(w);
+                myOled.clearDisplay(); 
+                
+                //**************//
+                  an=2; //180°
+                myOled.setRotation(an);
+                wait(w);
+                
+                    #ifdef GFX_WANT_ABSTRACTS
+           #define GFX_WANT_ABSTRACTS
+           #define BLACK 0
+           #define WHITE 1
+                
+                myOled.drawBitmap(0,0,myBitmap5,124,64,WHITE);
+                
+                myOled.display();
+                #endif 
+                 ro = myOled.getRotation();
+                 x=ro;
+                wait(w1);
+                myOled.clearDisplay();   
+                
+            myOled.setTextCursor (0,1);  
+            myOled.printf(" \nla rotacion es %u\r",x); 
+            myOled.display();
+            x=0;  
+                 wait(w);
+                myOled.clearDisplay();   
+                     
+                      
+                //**************//
+                  an=3; //270°
+                myOled.setRotation(an);
+                wait(w);
+                
+                    #ifdef GFX_WANT_ABSTRACTS
+           #define GFX_WANT_ABSTRACTS
+           #define BLACK 0
+           #define WHITE 1
+                
+                myOled.drawBitmap(0,0,myBitmap5,124,64,WHITE);
+                
+                myOled.display();
+                #endif 
+                 ro = myOled.getRotation();
+                 x=ro;
+                wait(w1);
+                myOled.clearDisplay();   
+                
+            myOled.setTextCursor (0,1);  
+            myOled.printf(" \nla rotacion es %u\r",x); 
+            myOled.display();
+            x=0;  
+                 wait(w);
+                myOled.clearDisplay();   
+                
+                //**************//
+                  an=4; //360°
+                myOled.setRotation(an);
+                wait(w);
+                
+                    #ifdef GFX_WANT_ABSTRACTS
+           #define GFX_WANT_ABSTRACTS
+           #define BLACK 0
+           #define WHITE 1
+                
+                myOled.drawBitmap(0,0,myBitmap5,124,64,WHITE);
+                
+                myOled.display();
+                #endif 
+                 ro = myOled.getRotation();
+                 x=ro;
+                wait(w1);
+                myOled.clearDisplay();  
+                
+            myOled.setTextCursor (0,1);  
+            myOled.printf(" \nla rotacion es %u\r",x); 
+            myOled.display();
+            x=0;  
+                 wait(w);
+                myOled.clearDisplay(); 
+                     
+                 tx=false;
+                   
+                     
+            myOled.clearDisplay();
+            myOled.setTextWrap(tx);  
+            myOled.setTextCursor (0,1);
+            myOled.printf(" \nla cuenta es %u\r",z);
+            myOled.display();
+            wait(0.5);
+            y=y+1;
+            z=z+1;
+            x=0;
+            
+            
+             
+            }
+         
+                if((y==5)){ 
+                
+           #ifdef GFX_WANT_ABSTRACTS
+           #define GFX_WANT_ABSTRACTS
+           #define BLACK 0
+           #define WHITE 1
+                myOled.fillScreen(WHITE);
+                myOled.display();
+                #endif 
+                wait(w);
+                myOled.clearDisplay();
+                
+                myOled.printf(" \n fin");
+                myOled.display();
+                wait(w);
+                y=y+1;
+                myOled.clearDisplay();
+                
+           #ifdef GFX_WANT_ABSTRACTS
+           #define GFX_WANT_ABSTRACTS
+           #define BLACK 0
+           #define WHITE 1
+                myOled.fillScreen(BLACK);
+                myOled.display();
+                #endif 
+                wait(w);
+                myOled.clearDisplay();  
+                af=false;
+    }
+    
+   } 
+    
+   }
+   }
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/imagen.h	Fri Jul 09 01:44:09 2021 +0000
@@ -0,0 +1,486 @@
+
+
+
+/****
+
+definir el glifo de longitud por medio del codigo ASCII
+
+Crea una GFXbitmapFontsalida formateada. Utilizado por una versión modificada de la biblioteca Adafruit GFX. 
+Proyecto y ejemplo de GitHub aquí.
+El primer valor de carácter ASCII se usa solo si no se proporciona un identificador de glifo de longitud igual a 1 para cada imagen. 
+El valor en sí se incrementará en 1 por cada glifo.
+
+****/
+ 
+#ifndef myBitmap1_H
+
+
+/***************************************************************
+
+este es un mapa de caracteres con direcciones Hexadecimales que incdican la posicion de cada pixel 
+de la pantalla dibujando una imagen la cual previamente devemos combertir en estos datos se recomienda usar
+la pagina  " http://javl.github.io/image2cpp/ " para hacer esta combersion o usar el programa " lcd converter " 
+estos mapas de bits se usan para la funsion DrawBitmap
+
+*********************************************************************/
+
+
+static const unsigned char  myBitmap1[] = {
+    
+ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, 
+0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x01, 0x01, 0x01, 0xe1, 0xe1, 0xe1, 0xe1, 0xe1, 0xe1, 0xe1, 
+0xe1, 0xe1, 0xe1, 0x81, 0x01, 0x01, 0xe1, 0xe1, 0xe1, 0xe1, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x3f, 
+0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 
+0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 
+0x1e, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0x3f, 0x3f, 0x3f, 0x1f, 0x03, 0x03, 0x03, 0x00, 0x00, 0x00, 0x1c, 
+0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 
+0x1c, 0x00, 0x00, 0x00, 0x03, 0x03, 0x03, 0x1f, 0x3f, 0x3f, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xf0, 0xf0, 0xf0, 0x00, 0x00, 0x00, 0xf0, 0xf0, 0xf0, 0xfe, 
+0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 
+0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 
+0xf8, 0xf0, 0xf0, 0xf0, 0x00, 0x00, 0x00, 0xf0, 0xf0, 0xf0, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0x3f, 0x3f, 0x3f, 0x3f, 0xc0, 0xc0, 0x00, 0x3f, 0x3f, 0x3f, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 
+0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0x7f, 0x3f, 0x3f, 0x3f, 0x80, 0xc0, 0xc0, 0x3f, 0x3f, 0x3f, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xe0, 0xf0, 0xe0, 0x1f, 0x1f, 0x1e, 0x1c, 0x1c, 0x1c, 0xe1, 
+0xe1, 0xe1, 0xe1, 0xe1, 0xe1, 0xe3, 0x03, 0x03, 0x03, 0xfc, 0xfc, 0xfc, 0x1c, 0x1c, 0x1c, 0x1c, 
+0x1c, 0x1c, 0x1c, 0x7c, 0xfc, 0xfc, 0x00, 0x01, 0x03, 0x01, 0xe3, 0xe3, 0xe3, 0xe1, 0xe1, 0xe1, 
+0xe0, 0x1c, 0x1c, 0x1c, 0x1f, 0x1f, 0x1f, 0xf0, 0xf0, 0xf0, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xf8, 0xf8, 0x80, 
+0x80, 0x80, 0x80, 0x0f, 0x0f, 0x07, 0x00, 0x00, 0x00, 0x03, 0x0f, 0x0f, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xdf, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x0f, 0x0f, 0x80, 0x80, 0x80, 
+0xf0, 0xf8, 0xf8, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xe0, 0xe0, 0xe0, 0xe3, 0xe3, 0xe3, 0xe3, 
+0xe3, 0xe3, 0xe3, 0xe1, 0xe0, 0xe0, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
+    
+    };
+    
+    
+    #endif
+    
+
+    
+    #ifndef myBitmap2_H
+    
+    
+    static const unsigned char  myBitmap2[] = {
+    
+    
+    0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0x7f, 0x7f, 0x1f, 0x9f, 0x9f, 0x9f, 0x9f, 0xe7, 0xe7, 0xe7, 0xe7, 0xe7, 0xe7, 
+0xe7, 0xe7, 0xe7, 0xe7, 0xe7, 0xe7, 0x87, 0x9f, 0x9f, 0x1f, 0x1f, 0x7f, 0x7f, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x07, 
+0x07, 0xf1, 0xf1, 0xf0, 0xfc, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfc, 0xfc, 0x00, 0x00, 0x01, 0x01, 0x03, 
+0x07, 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x3f, 
+0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f, 0x3f, 0x03, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xe0, 0xe0, 0x00, 
+0x00, 0xe0, 0xe0, 0x80, 0x83, 0x83, 0x83, 0x83, 0x03, 0x00, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 
+0x00, 0x03, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, 0xe0, 0xe0, 0xe0, 0x00, 
+0x00, 0x00, 0xe0, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 
+0xfe, 0xf9, 0xf9, 0xc7, 0xc7, 0x1f, 0x3f, 0x3f, 0x3e, 0x3e, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 
+0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0x3e, 0x3e, 0x3e, 0x3e, 0xc7, 0xc7, 0xf9, 0xf9, 0xf8, 
+0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 
+0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
+
+
+  };
+    
+    #endif
+    
+    
+    
+    
+     #ifndef myBitmap3_H
+    
+    
+    static const unsigned char  myBitmap3[] = {
+    
+    
+  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 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, 0xe0, 0xf8, 
+0xfc, 0xf0, 0xe0, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 
+0x7e, 0xfe, 0xfc, 0xfc, 0xfc, 0xf8, 0xf8, 0xf8, 0xf0, 0xf0, 0xe0, 0xe0, 0xe0, 0xc0, 0xc0, 0xc0, 
+0x80, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x0c, 0x0e, 0x0f, 0x0f, 0x0f, 
+0x0f, 0x0f, 0x0f, 0x0f, 0x0e, 0x0c, 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, 0xc0, 0xc0, 0xe0, 0xe0, 0xe0, 0xf0, 0xf0, 0xf0, 0xf8, 0xf8, 0xfc, 0xfc, 0xfc, 0xfe, 0xfe, 
+0x3e, 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, 0x00, 0x00, 
+0x00, 0x01, 0x01, 0x01, 0x01, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x07, 0x07, 0x07, 0x07, 0x07, 
+0x07, 0x07, 0x0f, 0x0f, 0x0f, 0x0e, 0x0e, 0x0c, 0x0c, 0x1c, 0x18, 0x18, 0xf8, 0xf8, 0xfe, 0x01, 
+0x00, 0x00, 0x00, 0x00, 0x80, 0xe0, 0xf8, 0xfe, 0xff, 0xff, 0xfc, 0xf0, 0xc0, 0x80, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x80, 0xe0, 0xf8, 0xfe, 0xff, 0xff, 0xfc, 0xf0, 0xe0, 0x80, 0x00, 0x00, 0x00, 
+0x00, 0x03, 0xfc, 0xf8, 0xf8, 0x18, 0x18, 0x1c, 0x0c, 0x0e, 0x0e, 0x0e, 0x0f, 0x0f, 0x07, 0x07, 
+0x07, 0x07, 0x07, 0x07, 0x07, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x01, 0x01, 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, 0x60, 0xe0, 0xe0, 0xe0, 0xe0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 
+0xf0, 0xf0, 0xf0, 0xf0, 0xf8, 0x78, 0x78, 0x78, 0x38, 0x38, 0x38, 0x18, 0x1f, 0x3f, 0xff, 0xf0, 
+0xc0, 0x80, 0x00, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x80, 
+0xc0, 0xf8, 0xff, 0x3f, 0x1f, 0x18, 0x38, 0x38, 0x38, 0x78, 0x78, 0x78, 0xf8, 0xf8, 0xf0, 0xf0, 
+0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xe0, 0xe0, 0xe0, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+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, 0x0f, 0x07, 0x07, 0x07, 0x03, 0x03, 0x03, 
+0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xc0, 0xe0, 0xe0, 0xf0, 0x78, 0x38, 0x1f, 0x0f, 
+0x0f, 0x1f, 0xff, 0xfe, 0xfc, 0xfc, 0xf8, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xf0, 0xfc, 
+0xfe, 0xf8, 0xe0, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0xfc, 0xfc, 0xfe, 0xfe, 0xff, 0x1f, 
+0x0f, 0x0f, 0x1f, 0x78, 0xf8, 0xf0, 0xe0, 0xe0, 0xc0, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 
+0x01, 0x03, 0x03, 0x03, 0x07, 0x07, 0x07, 0x0f, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x18, 0x38, 0x7c, 0xfe, 0x7f, 0x3f, 0x1f, 0x0f, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0xc0, 
+0xf0, 0xfe, 0xff, 0xff, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x3c, 0x7f, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0x7f, 0x3e, 0x38, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xff, 0xff, 0xfe, 
+0xf0, 0x80, 0x00, 0x00, 0x00, 0x01, 0x03, 0x07, 0x0f, 0x1f, 0x3f, 0xff, 0xfe, 0x7c, 0x38, 0x18, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x07, 
+0x07, 0x07, 0x07, 0x01, 0x00, 0x00, 0x00, 0xc0, 0xf0, 0x38, 0x18, 0x00, 0x00, 0x00, 0xe1, 0xff, 
+0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x18, 0x38, 0x70, 0xe0, 0x80, 0x00, 0x00, 0x01, 0x07, 0x07, 
+0x07, 0x07, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x0c, 0x1c, 
+0x3c, 0x04, 0x00, 0x00, 0x00, 0x04, 0x07, 0x1f, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x0f, 
+0x3f, 0x0f, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x1f, 0x07, 0x06, 0x00, 0x00, 0x00, 0x00, 
+0x04, 0x1c, 0x1c, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
+
+
+  };
+    
+    
+    #endif
+    
+    
+    #ifndef myBitmap4_H
+     
+    static const unsigned char  myBitmap4[] = {
+    
+    
+  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f, 0x8f, 
+0xf3, 0xf3, 0xfe, 0xfe, 0xf3, 0xf3, 0x8f, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8f, 0x73, 0x73, 0x7e, 0xff, 
+0xff, 0xff, 0x9f, 0x6f, 0x77, 0x77, 0xf9, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, 0x1f, 0x3f, 0x7f, 0x7f, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xef, 0xcf, 0x8f, 0x6e, 
+0xf6, 0xf2, 0xf1, 0x17, 0x9f, 0xff, 0xee, 0xe9, 0xf1, 0xf3, 0xf7, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0x7f, 0x7f, 0x7f, 0x1f, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xe0, 0x80, 0x00, 0xf0, 
+0xf8, 0xf8, 0xf9, 0xf7, 0xef, 0xef, 0x9f, 0x7f, 0xff, 0x9f, 0x9f, 0xef, 0x6f, 0x6f, 0x6f, 0x6f, 
+0x60, 0x60, 0x60, 0x60, 0xe8, 0xfd, 0x9f, 0x9f, 0x7f, 0x3f, 0x1f, 0xef, 0xf7, 0xf7, 0xf9, 0xf8, 
+0xf0, 0x00, 0x00, 0x80, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x11, 
+0x9f, 0x8f, 0x7f, 0x9f, 0xff, 0xff, 0xf9, 0xf8, 0xfc, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xf8, 0xf8, 0xf9, 0xff, 0x9f, 0xbf, 0x7f, 0x8f, 
+0x11, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8f, 0xff, 0x77, 0xe1, 0x78, 
+0xc1, 0xc1, 0xfe, 0xff, 0xff, 0xff, 0x8f, 0x17, 0x07, 0x07, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8f, 0x07, 0x17, 0x97, 0x8f, 0xff, 0xff, 0xff, 0xfe, 0x81, 
+0x78, 0xf1, 0xe1, 0x77, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xf9, 0xf8, 
+0xe7, 0xe7, 0x1f, 0x7f, 0x7f, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0xef, 0xef, 0xef, 0xf6, 
+0xf6, 0xf6, 0xef, 0xef, 0xf7, 0xf7, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f, 0x7f, 0x3f, 0x1f, 0xe7, 
+0xf8, 0xf9, 0xfd, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xf8, 0xe7, 0xe7, 0x8e, 0x7e, 0x3e, 0x1e, 0x7f, 0x89, 0xf1, 0xf1, 0xf9, 0xf9, 
+0xf9, 0xf9, 0xf9, 0xf1, 0xc9, 0xcf, 0x7f, 0x1e, 0x7e, 0xfe, 0xce, 0xe7, 0xf8, 0xfc, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
+  };
+    
+    
+    #endif
+    
+    
+    
+    
+    
+ #ifndef myBitmap5_H
+    
+    
+    
+    static const unsigned char  myBitmap5[] = {
+    
+  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, 0xef, 0xf7, 
+0xf7, 0xf7, 0xff, 0xef, 0xef, 0xdf, 0xdf, 0xbf, 0x7f, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f, 0x3f, 0x9f, 
+0xdf, 0x4f, 0xef, 0xf7, 0xf7, 0xf7, 0xff, 0xf3, 0xc0, 0xfc, 0xc0, 0xc3, 0x87, 0x07, 0x07, 0x07, 
+0x0f, 0x0f, 0x1f, 0x1d, 0x3f, 0x76, 0xec, 0xd9, 0x33, 0xef, 0x9f, 0x7f, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0x3f, 0x07, 0x03, 0xc4, 0xce, 0xef, 0xf7, 0xf0, 0xfb, 0xfb, 0xfb, 
+0xf9, 0x19, 0x89, 0xc1, 0xc1, 0x81, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x03, 0x07, 0x1c, 0xf3, 0x8e, 0x78, 0xe3, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, 
+0x01, 0x00, 0x00, 0x00, 0x07, 0x07, 0x07, 0x07, 0x67, 0x67, 0x47, 0x47, 0x07, 0x00, 0x03, 0x03, 
+0x07, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x40, 0x60, 0x60, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x01, 0x1f, 0x7c, 0xe3, 0x7e, 0xe0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f, 0x83, 0xf8, 0xfe, 0x00, 0x00, 0x00, 0x1c, 
+0x3e, 0xe8, 0xc8, 0xc8, 0xc8, 0xc8, 0xfc, 0xfe, 0xf0, 0xe0, 0xe0, 0xe0, 0xc0, 0x80, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0xfc, 0x01, 0x60, 0x3f, 0xfc, 0x07, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0x07, 0xf0, 0xff, 0xff, 0x7f, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xfc, 0xfd, 0xff, 
+0x87, 0x9f, 0xcf, 0xe7, 0xc7, 0xe3, 0xe3, 0xe7, 0xe7, 0xe3, 0xc7, 0xc2, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3f, 0xfc, 0x00, 0x00, 
+0xff, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xfb, 
+0xf7, 0xe7, 0xef, 0xc0, 0xe0, 0xf0, 0xfc, 0xfc, 0xf9, 0xfb, 0xf7, 0xe7, 0xef, 0xdf, 0x9f, 0x1f, 
+0x73, 0x7c, 0x7e, 0x7c, 0x7c, 0x3c, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xc0, 0xe0, 0xf0, 
+0xf0, 0xf8, 0xfc, 0xfc, 0xf8, 0xf0, 0xf0, 0xf4, 0x72, 0x13, 0xc0, 0x38, 0x83, 0xf8, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xe0, 0xf3, 0xfc, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
+    
+    
+  };
+    
+    
+    #endif
+    
+    
+    
+        
+ #ifndef myBitmap6_H
+    
+    
+    
+    static const unsigned char  myBitmap6[] = {
+       0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x1f, 0x1f, 0x1f, 0x1f, 0x3f, 0x3f, 0x3e, 0x3e, 0x3e, 0x3e, 0x3c, 0x3c, 0x3c, 
+0x3c, 0x3c, 0x3c, 0x38, 0x38, 0xf8, 0xf8, 0x78, 0x08, 0x04, 0x00, 0x00, 0x00, 0x40, 0x70, 0x78, 
+0x7c, 0x78, 0x60, 0x00, 0x00, 0x00, 0x00, 0x04, 0x18, 0xf8, 0xf8, 0x38, 0x38, 0x38, 0x3c, 0x3c, 
+0x3c, 0x3c, 0x3c, 0x3e, 0x3e, 0x3e, 0x3e, 0x3e, 0x3f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x0e, 0x3e, 0x3e, 0x3e, 0x3e, 0x3e, 0x1e, 0x1e, 0x1e, 0x1e, 
+0x8e, 0x8e, 0x8e, 0xce, 0xc6, 0xff, 0xff, 0xf0, 0xc0, 0x80, 0x18, 0x1e, 0x1f, 0x1e, 0x1c, 0x10, 
+0x80, 0x18, 0x1c, 0x1f, 0x1f, 0x1c, 0x10, 0x80, 0xc0, 0xff, 0xff, 0xcf, 0xc6, 0x8e, 0x8e, 0x8e, 
+0x8e, 0x1e, 0x1e, 0x1e, 0x3e, 0x3e, 0x3e, 0x3e, 0x3e, 0x1e, 0x06, 0x02, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x02, 0x07, 0x0f, 0x0f, 
+0x1f, 0x0f, 0x07, 0x07, 0x03, 0x61, 0x71, 0xf1, 0xfb, 0x3f, 0x8f, 0x8e, 0x06, 0x70, 0xfc, 0xff, 
+0xff, 0xfe, 0x78, 0x30, 0x06, 0x8e, 0x9f, 0x7f, 0xf9, 0xf0, 0x61, 0x43, 0x03, 0x07, 0x0f, 0x0f, 
+0x1f, 0x0f, 0x0f, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x70, 0xf8, 0x18, 0x18, 0x18, 0x18, 0x7e, 0x3f, 0x03, 0x00, 0x00, 0x04, 0x7f, 
+0xff, 0x1e, 0x00, 0x00, 0x01, 0x17, 0x3f, 0x18, 0x18, 0x18, 0x18, 0xf8, 0xf8, 0x30, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0xfc, 0x04, 0x06, 0x06, 0x04, 0x08, 
+0x00, 0x04, 0x04, 0x04, 0xfc, 0x04, 0x04, 0x04, 0x00, 0x00, 0xfe, 0x46, 0x46, 0xc6, 0xc4, 0x7c, 
+0x00, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x80, 0x80, 0x80, 0x00, 
+0x00, 0x00, 0x04, 0x84, 0xe4, 0x3c, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x04, 0x0c, 0x0c, 0x04, 0x02, 
+0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x03, 0x0e, 
+0x00, 0x00, 0x00, 0x0f, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x00, 0x00, 0x01, 0x01, 0x01, 0x01, 0x00, 
+0x00, 0x04, 0x0e, 0x0f, 0x0c, 0x0c, 0x0c, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
+        
+        };
+        #endif
\ No newline at end of file
--- a/main.cpp	Wed Sep 25 15:57:32 2019 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,27 +0,0 @@
-#include "mbed.h"
-#include "Adafruit_SSD1306.h"
-
-DigitalOut myled_R(LED1);
-
-I2C i2c(I2C_SDA,I2C_SCL);
-
-Adafruit_SSD1306_I2c myOled(i2c,NC,0x78,64,128);
-
-
-int main()
-{   
-    uint16_t x=0;
-    
-    myOled.begin();
-    myOled.printf("%ux%u \nHellow World\r\n", myOled.width(), myOled.height());
-    myOled.display();
-
-    while(1)
-    {
-        myled_R = !myled_R;
-        myOled.printf("%u\r",x);
-        myOled.display();
-        x = x + 1;                  
-        wait(0.1);
-    }
-}