
/*******************************************************************************
* image
* filename: C:/LCDprog/6x8B.xml
* name: Image
*
* preset name: Monochrome
* data block size: 8 bit(s), uint8_t
* RLE compression enabled: no
* conversion type: Monochrome, Diffuse Dither 128
* bits per pixel: 1
*
* preprocess:
*  main scan direction: top_to_bottom
*  line scan direction: forward
*  inverse: yes
*******************************************************************************/

/*
 typedef struct {
     const uint8_t *data;
     uint16_t width;
     uint16_t height;
     } tImage;
*/
#include <stdint.h>



static const uint8_t image_data_Image[8] = {
    0x3c, 
    0x22, 
    0x22, 
    0x3c, 
    0x22, 
    0x21, 
    0x21, 
    0x3e
};
const tImage Image = { image_data_Image, 8, 8};

