
/*******************************************************************************
* image
* filename: C:/LCDprog/24x8Fer.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[24] = {
    0x01, 0x20, 0x01, 
    0x01, 0x20, 0x01, 
    0x01, 0x20, 0x01, 
    0x02, 0x10, 0x02, 
    0x04, 0x08, 0x04, 
    0x08, 0x04, 0x08, 
    0x10, 0x02, 0x10, 
    0x20, 0x01, 0x20
};
const tImage Image = { image_data_Image, 24, 8};

