This is test library which translated from code for arduino. Original code, and their product can be found in the link below. http://www.adafruit.com/products/250

Dependents:   CH12864F-SPI2_Test

ST7565 LCD

!This is the test library.!

I translated arduino code to mbed. You can find the product and datasheet from the following link.

http://www.adafruit.com/products/250

void begin(uint8_t contrast);

  • Initialize data with Adafruit Logo.
  • contrast is needed

void clear_display(void);

  • Clears only display data. RAM data kept remained.

void clear();

  • Clears display data and RAM data.

void display();

  • Update display with RAM data.

void setpixel(uint8_t x, uint8_t y, uint8_t color);

  • Set a dot at (x, y)

void fillcircle(uint8_t x0, uint8_t y0, uint8_t r, uint8_t color);

  • Draw a filled circle with its center coordinate (x0, y0) and radius r.

void fillrect(uint8_t x, uint8_t y, uint8_t w, uint8_t h, uint8_t color);

  • Draw a filled rectangular with its top-left coordinate (x, y) and its width (w) and height (h).

void drawcircle(uint8_t x0, uint8_t y0, uint8_t r, uint8_t color);

  • Draw a circle with its center coordinate (x0, y0) and radius r.

void drawrect(uint8_t x, uint8_t y, uint8_t w, uint8_t h, uint8_t color);

  • Draw a rectangular with its top-left coordinate (x, y) and its width (w) and height (h).

void drawline(uint8_t x0, uint8_t y0, uint8_t x1, uint8_t y1, uint8_t color);

  • Draw a line starts from (x0, y0) to (x1, y1)

void drawchar(uint8_t x, uint8_t line, char c);

  • Set a character

void drawstring(uint8_t x, uint8_t line, char *c);

  • Set string

Example code for main.cpp:

#include "mbed.h"
#include "st7565LCD.h"


ST7565 st7565(p11, p13, p21, p22, p23); // mosi, sclk, cs, rst, a0
int main()
{
//0x18 defines cntrast
    st7565.begin(0x18);
//show initial data (Adafruit logo)
    st7565.display();
    wait(1.0);
//Clear all data
    st7565.clear();
//test code
        st7565.drawstring(1,1,"test");
//update RAM data
        st7565.display();
    while(1) {
    }
}

Committer:
imachooon
Date:
Tue Mar 18 09:26:16 2014 +0000
Revision:
0:f2eba6cbd093
This is test library for ST7565 LCD.; http://www.adafruit.com/products/250; This library is translated from arduino code they offered to mbed.;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
imachooon 0:f2eba6cbd093 1
imachooon 0:f2eba6cbd093 2
imachooon 0:f2eba6cbd093 3 // 5x7 LCD font 'flipped' for the ST7565 - public domain
imachooon 0:f2eba6cbd093 4 static const uint8_t font[] = {
imachooon 0:f2eba6cbd093 5 0x0, 0x0, 0x0, 0x0, 0x0, // Ascii 0
imachooon 0:f2eba6cbd093 6 0x7C, 0xDA, 0xF2, 0xDA, 0x7C, //ASC(01)
imachooon 0:f2eba6cbd093 7 0x7C, 0xD6, 0xF2, 0xD6, 0x7C, //ASC(02)
imachooon 0:f2eba6cbd093 8 0x38, 0x7C, 0x3E, 0x7C, 0x38,
imachooon 0:f2eba6cbd093 9 0x18, 0x3C, 0x7E, 0x3C, 0x18,
imachooon 0:f2eba6cbd093 10 0x38, 0xEA, 0xBE, 0xEA, 0x38,
imachooon 0:f2eba6cbd093 11 0x38, 0x7A, 0xFE, 0x7A, 0x38,
imachooon 0:f2eba6cbd093 12 0x0, 0x18, 0x3C, 0x18, 0x0,
imachooon 0:f2eba6cbd093 13 0xFF, 0xE7, 0xC3, 0xE7, 0xFF,
imachooon 0:f2eba6cbd093 14 0x0, 0x18, 0x24, 0x18, 0x0,
imachooon 0:f2eba6cbd093 15 0xFF, 0xE7, 0xDB, 0xE7, 0xFF,
imachooon 0:f2eba6cbd093 16 0xC, 0x12, 0x5C, 0x60, 0x70,
imachooon 0:f2eba6cbd093 17 0x64, 0x94, 0x9E, 0x94, 0x64,
imachooon 0:f2eba6cbd093 18 0x2, 0xFE, 0xA0, 0xA0, 0xE0,
imachooon 0:f2eba6cbd093 19 0x2, 0xFE, 0xA0, 0xA4, 0xFC,
imachooon 0:f2eba6cbd093 20 0x5A, 0x3C, 0xE7, 0x3C, 0x5A,
imachooon 0:f2eba6cbd093 21 0xFE, 0x7C, 0x38, 0x38, 0x10,
imachooon 0:f2eba6cbd093 22 0x10, 0x38, 0x38, 0x7C, 0xFE,
imachooon 0:f2eba6cbd093 23 0x28, 0x44, 0xFE, 0x44, 0x28,
imachooon 0:f2eba6cbd093 24 0xFA, 0xFA, 0x0, 0xFA, 0xFA,
imachooon 0:f2eba6cbd093 25 0x60, 0x90, 0xFE, 0x80, 0xFE,
imachooon 0:f2eba6cbd093 26 0x0, 0x66, 0x91, 0xA9, 0x56,
imachooon 0:f2eba6cbd093 27 0x6, 0x6, 0x6, 0x6, 0x6,
imachooon 0:f2eba6cbd093 28 0x29, 0x45, 0xFF, 0x45, 0x29,
imachooon 0:f2eba6cbd093 29 0x10, 0x20, 0x7E, 0x20, 0x10,
imachooon 0:f2eba6cbd093 30 0x8, 0x4, 0x7E, 0x4, 0x8,
imachooon 0:f2eba6cbd093 31 0x10, 0x10, 0x54, 0x38, 0x10,
imachooon 0:f2eba6cbd093 32 0x10, 0x38, 0x54, 0x10, 0x10,
imachooon 0:f2eba6cbd093 33 0x78, 0x8, 0x8, 0x8, 0x8,
imachooon 0:f2eba6cbd093 34 0x30, 0x78, 0x30, 0x78, 0x30,
imachooon 0:f2eba6cbd093 35 0xC, 0x1C, 0x7C, 0x1C, 0xC,
imachooon 0:f2eba6cbd093 36 0x60, 0x70, 0x7C, 0x70, 0x60,
imachooon 0:f2eba6cbd093 37 0x0, 0x0, 0x0, 0x0, 0x0,
imachooon 0:f2eba6cbd093 38 0x0, 0x0, 0xFA, 0x0, 0x0,
imachooon 0:f2eba6cbd093 39 0x0, 0xE0, 0x0, 0xE0, 0x0,
imachooon 0:f2eba6cbd093 40 0x28, 0xFE, 0x28, 0xFE, 0x28,
imachooon 0:f2eba6cbd093 41 0x24, 0x54, 0xFE, 0x54, 0x48,
imachooon 0:f2eba6cbd093 42 0xC4, 0xC8, 0x10, 0x26, 0x46,
imachooon 0:f2eba6cbd093 43 0x6C, 0x92, 0x6A, 0x4, 0xA,
imachooon 0:f2eba6cbd093 44 0x0, 0x10, 0xE0, 0xC0, 0x0,
imachooon 0:f2eba6cbd093 45 0x0, 0x38, 0x44, 0x82, 0x0,
imachooon 0:f2eba6cbd093 46 0x0, 0x82, 0x44, 0x38, 0x0,
imachooon 0:f2eba6cbd093 47 0x54, 0x38, 0xFE, 0x38, 0x54,
imachooon 0:f2eba6cbd093 48 0x10, 0x10, 0x7C, 0x10, 0x10,
imachooon 0:f2eba6cbd093 49 0x0, 0x1, 0xE, 0xC, 0x0,
imachooon 0:f2eba6cbd093 50 0x10, 0x10, 0x10, 0x10, 0x10,
imachooon 0:f2eba6cbd093 51 0x0, 0x0, 0x6, 0x6, 0x0,
imachooon 0:f2eba6cbd093 52 0x4, 0x8, 0x10, 0x20, 0x40,
imachooon 0:f2eba6cbd093 53 0x7C, 0x8A, 0x92, 0xA2, 0x7C,
imachooon 0:f2eba6cbd093 54 0x0, 0x42, 0xFE, 0x2, 0x0,
imachooon 0:f2eba6cbd093 55 0x4E, 0x92, 0x92, 0x92, 0x62,
imachooon 0:f2eba6cbd093 56 0x84, 0x82, 0x92, 0xB2, 0xCC,
imachooon 0:f2eba6cbd093 57 0x18, 0x28, 0x48, 0xFE, 0x8,
imachooon 0:f2eba6cbd093 58 0xE4, 0xA2, 0xA2, 0xA2, 0x9C,
imachooon 0:f2eba6cbd093 59 0x3C, 0x52, 0x92, 0x92, 0x8C,
imachooon 0:f2eba6cbd093 60 0x82, 0x84, 0x88, 0x90, 0xE0,
imachooon 0:f2eba6cbd093 61 0x6C, 0x92, 0x92, 0x92, 0x6C,
imachooon 0:f2eba6cbd093 62 0x62, 0x92, 0x92, 0x94, 0x78,
imachooon 0:f2eba6cbd093 63 0x0, 0x0, 0x28, 0x0, 0x0,
imachooon 0:f2eba6cbd093 64 0x0, 0x2, 0x2C, 0x0, 0x0,
imachooon 0:f2eba6cbd093 65 0x0, 0x10, 0x28, 0x44, 0x82,
imachooon 0:f2eba6cbd093 66 0x28, 0x28, 0x28, 0x28, 0x28,
imachooon 0:f2eba6cbd093 67 0x0, 0x82, 0x44, 0x28, 0x10,
imachooon 0:f2eba6cbd093 68 0x40, 0x80, 0x9A, 0x90, 0x60,
imachooon 0:f2eba6cbd093 69 0x7C, 0x82, 0xBA, 0x9A, 0x72,
imachooon 0:f2eba6cbd093 70 0x3E, 0x48, 0x88, 0x48, 0x3E,
imachooon 0:f2eba6cbd093 71 0xFE, 0x92, 0x92, 0x92, 0x6C,
imachooon 0:f2eba6cbd093 72 0x7C, 0x82, 0x82, 0x82, 0x44,
imachooon 0:f2eba6cbd093 73 0xFE, 0x82, 0x82, 0x82, 0x7C,
imachooon 0:f2eba6cbd093 74 0xFE, 0x92, 0x92, 0x92, 0x82,
imachooon 0:f2eba6cbd093 75 0xFE, 0x90, 0x90, 0x90, 0x80,
imachooon 0:f2eba6cbd093 76 0x7C, 0x82, 0x82, 0x8A, 0xCE,
imachooon 0:f2eba6cbd093 77 0xFE, 0x10, 0x10, 0x10, 0xFE,
imachooon 0:f2eba6cbd093 78 0x0, 0x82, 0xFE, 0x82, 0x0,
imachooon 0:f2eba6cbd093 79 0x4, 0x2, 0x82, 0xFC, 0x80,
imachooon 0:f2eba6cbd093 80 0xFE, 0x10, 0x28, 0x44, 0x82,
imachooon 0:f2eba6cbd093 81 0xFE, 0x2, 0x2, 0x2, 0x2,
imachooon 0:f2eba6cbd093 82 0xFE, 0x40, 0x38, 0x40, 0xFE,
imachooon 0:f2eba6cbd093 83 0xFE, 0x20, 0x10, 0x8, 0xFE,
imachooon 0:f2eba6cbd093 84 0x7C, 0x82, 0x82, 0x82, 0x7C,
imachooon 0:f2eba6cbd093 85 0xFE, 0x90, 0x90, 0x90, 0x60,
imachooon 0:f2eba6cbd093 86 0x7C, 0x82, 0x8A, 0x84, 0x7A,
imachooon 0:f2eba6cbd093 87 0xFE, 0x90, 0x98, 0x94, 0x62,
imachooon 0:f2eba6cbd093 88 0x64, 0x92, 0x92, 0x92, 0x4C,
imachooon 0:f2eba6cbd093 89 0xC0, 0x80, 0xFE, 0x80, 0xC0,
imachooon 0:f2eba6cbd093 90 0xFC, 0x2, 0x2, 0x2, 0xFC,
imachooon 0:f2eba6cbd093 91 0xF8, 0x4, 0x2, 0x4, 0xF8,
imachooon 0:f2eba6cbd093 92 0xFC, 0x2, 0x1C, 0x2, 0xFC,
imachooon 0:f2eba6cbd093 93 0xC6, 0x28, 0x10, 0x28, 0xC6,
imachooon 0:f2eba6cbd093 94 0xC0, 0x20, 0x1E, 0x20, 0xC0,
imachooon 0:f2eba6cbd093 95 0x86, 0x9A, 0x92, 0xB2, 0xC2,
imachooon 0:f2eba6cbd093 96 0x0, 0xFE, 0x82, 0x82, 0x82,
imachooon 0:f2eba6cbd093 97 0x40, 0x20, 0x10, 0x8, 0x4,
imachooon 0:f2eba6cbd093 98 0x0, 0x82, 0x82, 0x82, 0xFE,
imachooon 0:f2eba6cbd093 99 0x20, 0x40, 0x80, 0x40, 0x20,
imachooon 0:f2eba6cbd093 100 0x2, 0x2, 0x2, 0x2, 0x2,
imachooon 0:f2eba6cbd093 101 0x0, 0xC0, 0xE0, 0x10, 0x0,
imachooon 0:f2eba6cbd093 102 0x4, 0x2A, 0x2A, 0x1E, 0x2,
imachooon 0:f2eba6cbd093 103 0xFE, 0x14, 0x22, 0x22, 0x1C,
imachooon 0:f2eba6cbd093 104 0x1C, 0x22, 0x22, 0x22, 0x14,
imachooon 0:f2eba6cbd093 105 0x1C, 0x22, 0x22, 0x14, 0xFE,
imachooon 0:f2eba6cbd093 106 0x1C, 0x2A, 0x2A, 0x2A, 0x18,
imachooon 0:f2eba6cbd093 107 0x0, 0x10, 0x7E, 0x90, 0x40,
imachooon 0:f2eba6cbd093 108 0x18, 0x25, 0x25, 0x39, 0x1E,
imachooon 0:f2eba6cbd093 109 0xFE, 0x10, 0x20, 0x20, 0x1E,
imachooon 0:f2eba6cbd093 110 0x0, 0x22, 0xBE, 0x2, 0x0,
imachooon 0:f2eba6cbd093 111 0x4, 0x2, 0x2, 0xBC, 0x0,
imachooon 0:f2eba6cbd093 112 0xFE, 0x8, 0x14, 0x22, 0x0,
imachooon 0:f2eba6cbd093 113 0x0, 0x82, 0xFE, 0x2, 0x0,
imachooon 0:f2eba6cbd093 114 0x3E, 0x20, 0x1E, 0x20, 0x1E,
imachooon 0:f2eba6cbd093 115 0x3E, 0x10, 0x20, 0x20, 0x1E,
imachooon 0:f2eba6cbd093 116 0x1C, 0x22, 0x22, 0x22, 0x1C,
imachooon 0:f2eba6cbd093 117 0x3F, 0x18, 0x24, 0x24, 0x18,
imachooon 0:f2eba6cbd093 118 0x18, 0x24, 0x24, 0x18, 0x3F,
imachooon 0:f2eba6cbd093 119 0x3E, 0x10, 0x20, 0x20, 0x10,
imachooon 0:f2eba6cbd093 120 0x12, 0x2A, 0x2A, 0x2A, 0x24,
imachooon 0:f2eba6cbd093 121 0x20, 0x20, 0xFC, 0x22, 0x24,
imachooon 0:f2eba6cbd093 122 0x3C, 0x2, 0x2, 0x4, 0x3E,
imachooon 0:f2eba6cbd093 123 0x38, 0x4, 0x2, 0x4, 0x38,
imachooon 0:f2eba6cbd093 124 0x3C, 0x2, 0xC, 0x2, 0x3C,
imachooon 0:f2eba6cbd093 125 0x22, 0x14, 0x8, 0x14, 0x22,
imachooon 0:f2eba6cbd093 126 0x32, 0x9, 0x9, 0x9, 0x3E,
imachooon 0:f2eba6cbd093 127 0x22, 0x26, 0x2A, 0x32, 0x22,
imachooon 0:f2eba6cbd093 128 0x0, 0x10, 0x6C, 0x82, 0x0,
imachooon 0:f2eba6cbd093 129 0x0, 0x0, 0xEE, 0x0, 0x0,
imachooon 0:f2eba6cbd093 130 0x0, 0x82, 0x6C, 0x10, 0x0,
imachooon 0:f2eba6cbd093 131 0x40, 0x80, 0x40, 0x20, 0x40,
imachooon 0:f2eba6cbd093 132 0x3C, 0x64, 0xC4, 0x64, 0x3C,
imachooon 0:f2eba6cbd093 133 0x78, 0x85, 0x85, 0x86, 0x48,
imachooon 0:f2eba6cbd093 134 0x5C, 0x2, 0x2, 0x4, 0x5E,
imachooon 0:f2eba6cbd093 135 0x1C, 0x2A, 0x2A, 0xAA, 0x9A,
imachooon 0:f2eba6cbd093 136 0x84, 0xAA, 0xAA, 0x9E, 0x82,
imachooon 0:f2eba6cbd093 137 0x84, 0x2A, 0x2A, 0x1E, 0x82,
imachooon 0:f2eba6cbd093 138 0x84, 0xAA, 0x2A, 0x1E, 0x2,
imachooon 0:f2eba6cbd093 139 0x4, 0x2A, 0xAA, 0x9E, 0x2,
imachooon 0:f2eba6cbd093 140 0x30, 0x78, 0x4A, 0x4E, 0x48,
imachooon 0:f2eba6cbd093 141 0x9C, 0xAA, 0xAA, 0xAA, 0x9A,
imachooon 0:f2eba6cbd093 142 0x9C, 0x2A, 0x2A, 0x2A, 0x9A,
imachooon 0:f2eba6cbd093 143 0x9C, 0xAA, 0x2A, 0x2A, 0x1A,
imachooon 0:f2eba6cbd093 144 0x0, 0x0, 0xA2, 0x3E, 0x82,
imachooon 0:f2eba6cbd093 145 0x0, 0x40, 0xA2, 0xBE, 0x42,
imachooon 0:f2eba6cbd093 146 0x0, 0x80, 0xA2, 0x3E, 0x2,
imachooon 0:f2eba6cbd093 147 0xF, 0x94, 0x24, 0x94, 0xF,
imachooon 0:f2eba6cbd093 148 0xF, 0x14, 0xA4, 0x14, 0xF,
imachooon 0:f2eba6cbd093 149 0x3E, 0x2A, 0xAA, 0xA2, 0x0,
imachooon 0:f2eba6cbd093 150 0x4, 0x2A, 0x2A, 0x3E, 0x2A,
imachooon 0:f2eba6cbd093 151 0x3E, 0x50, 0x90, 0xFE, 0x92,
imachooon 0:f2eba6cbd093 152 0x4C, 0x92, 0x92, 0x92, 0x4C,
imachooon 0:f2eba6cbd093 153 0x4C, 0x12, 0x12, 0x12, 0x4C,
imachooon 0:f2eba6cbd093 154 0x4C, 0x52, 0x12, 0x12, 0xC,
imachooon 0:f2eba6cbd093 155 0x5C, 0x82, 0x82, 0x84, 0x5E,
imachooon 0:f2eba6cbd093 156 0x5C, 0x42, 0x2, 0x4, 0x1E,
imachooon 0:f2eba6cbd093 157 0x0, 0xB9, 0x5, 0x5, 0xBE,
imachooon 0:f2eba6cbd093 158 0x9C, 0x22, 0x22, 0x22, 0x9C,
imachooon 0:f2eba6cbd093 159 0xBC, 0x2, 0x2, 0x2, 0xBC,
imachooon 0:f2eba6cbd093 160 0x3C, 0x24, 0xFF, 0x24, 0x24,
imachooon 0:f2eba6cbd093 161 0x12, 0x7E, 0x92, 0xC2, 0x66,
imachooon 0:f2eba6cbd093 162 0xD4, 0xF4, 0x3F, 0xF4, 0xD4,
imachooon 0:f2eba6cbd093 163 0xFF, 0x90, 0x94, 0x6F, 0x4,
imachooon 0:f2eba6cbd093 164 0x3, 0x11, 0x7E, 0x90, 0xC0,
imachooon 0:f2eba6cbd093 165 0x4, 0x2A, 0x2A, 0x9E, 0x82,
imachooon 0:f2eba6cbd093 166 0x0, 0x0, 0x22, 0xBE, 0x82,
imachooon 0:f2eba6cbd093 167 0xC, 0x12, 0x12, 0x52, 0x4C,
imachooon 0:f2eba6cbd093 168 0x1C, 0x2, 0x2, 0x44, 0x5E,
imachooon 0:f2eba6cbd093 169 0x0, 0x5E, 0x50, 0x50, 0x4E,
imachooon 0:f2eba6cbd093 170 0xBE, 0xB0, 0x98, 0x8C, 0xBE,
imachooon 0:f2eba6cbd093 171 0x64, 0x94, 0x94, 0xF4, 0x14,
imachooon 0:f2eba6cbd093 172 0x64, 0x94, 0x94, 0x94, 0x64,
imachooon 0:f2eba6cbd093 173 0xC, 0x12, 0xB2, 0x2, 0x4,
imachooon 0:f2eba6cbd093 174 0x1C, 0x10, 0x10, 0x10, 0x10,
imachooon 0:f2eba6cbd093 175 0x10, 0x10, 0x10, 0x10, 0x1C,
imachooon 0:f2eba6cbd093 176 0xF4, 0x8, 0x13, 0x35, 0x5D,
imachooon 0:f2eba6cbd093 177 0xF4, 0x8, 0x14, 0x2C, 0x5F,
imachooon 0:f2eba6cbd093 178 0x0, 0x0, 0xDE, 0x0, 0x0,
imachooon 0:f2eba6cbd093 179 0x10, 0x28, 0x54, 0x28, 0x44,
imachooon 0:f2eba6cbd093 180 0x44, 0x28, 0x54, 0x28, 0x10,
imachooon 0:f2eba6cbd093 181 0x55, 0x0, 0xAA, 0x0, 0x55,
imachooon 0:f2eba6cbd093 182 0x55, 0xAA, 0x55, 0xAA, 0x55,
imachooon 0:f2eba6cbd093 183 0xAA, 0x55, 0xAA, 0x55, 0xAA,
imachooon 0:f2eba6cbd093 184 0x0, 0x0, 0x0, 0xFF, 0x0,
imachooon 0:f2eba6cbd093 185 0x8, 0x8, 0x8, 0xFF, 0x0,
imachooon 0:f2eba6cbd093 186 0x28, 0x28, 0x28, 0xFF, 0x0,
imachooon 0:f2eba6cbd093 187 0x8, 0x8, 0xFF, 0x0, 0xFF,
imachooon 0:f2eba6cbd093 188 0x8, 0x8, 0xF, 0x8, 0xF,
imachooon 0:f2eba6cbd093 189 0x28, 0x28, 0x28, 0x3F, 0x0,
imachooon 0:f2eba6cbd093 190 0x28, 0x28, 0xEF, 0x0, 0xFF,
imachooon 0:f2eba6cbd093 191 0x0, 0x0, 0xFF, 0x0, 0xFF,
imachooon 0:f2eba6cbd093 192 0x28, 0x28, 0x2F, 0x20, 0x3F,
imachooon 0:f2eba6cbd093 193 0x28, 0x28, 0xE8, 0x8, 0xF8,
imachooon 0:f2eba6cbd093 194 0x8, 0x8, 0xF8, 0x8, 0xF8,
imachooon 0:f2eba6cbd093 195 0x28, 0x28, 0x28, 0xF8, 0x0,
imachooon 0:f2eba6cbd093 196 0x8, 0x8, 0x8, 0xF, 0x0,
imachooon 0:f2eba6cbd093 197 0x0, 0x0, 0x0, 0xF8, 0x8,
imachooon 0:f2eba6cbd093 198 0x8, 0x8, 0x8, 0xF8, 0x8,
imachooon 0:f2eba6cbd093 199 0x8, 0x8, 0x8, 0xF, 0x8,
imachooon 0:f2eba6cbd093 200 0x0, 0x0, 0x0, 0xFF, 0x8,
imachooon 0:f2eba6cbd093 201 0x8, 0x8, 0x8, 0x8, 0x8,
imachooon 0:f2eba6cbd093 202 0x8, 0x8, 0x8, 0xFF, 0x8,
imachooon 0:f2eba6cbd093 203 0x0, 0x0, 0x0, 0xFF, 0x28,
imachooon 0:f2eba6cbd093 204 0x0, 0x0, 0xFF, 0x0, 0xFF,
imachooon 0:f2eba6cbd093 205 0x0, 0x0, 0xF8, 0x8, 0xE8,
imachooon 0:f2eba6cbd093 206 0x0, 0x0, 0x3F, 0x20, 0x2F,
imachooon 0:f2eba6cbd093 207 0x28, 0x28, 0xE8, 0x8, 0xE8,
imachooon 0:f2eba6cbd093 208 0x28, 0x28, 0x2F, 0x20, 0x2F,
imachooon 0:f2eba6cbd093 209 0x0, 0x0, 0xFF, 0x0, 0xEF,
imachooon 0:f2eba6cbd093 210 0x28, 0x28, 0x28, 0x28, 0x28,
imachooon 0:f2eba6cbd093 211 0x28, 0x28, 0xEF, 0x0, 0xEF,
imachooon 0:f2eba6cbd093 212 0x28, 0x28, 0x28, 0xE8, 0x28,
imachooon 0:f2eba6cbd093 213 0x8, 0x8, 0xF8, 0x8, 0xF8,
imachooon 0:f2eba6cbd093 214 0x28, 0x28, 0x28, 0x2F, 0x28,
imachooon 0:f2eba6cbd093 215 0x8, 0x8, 0xF, 0x8, 0xF,
imachooon 0:f2eba6cbd093 216 0x0, 0x0, 0xF8, 0x8, 0xF8,
imachooon 0:f2eba6cbd093 217 0x0, 0x0, 0x0, 0xF8, 0x28,
imachooon 0:f2eba6cbd093 218 0x0, 0x0, 0x0, 0x3F, 0x28,
imachooon 0:f2eba6cbd093 219 0x0, 0x0, 0xF, 0x8, 0xF,
imachooon 0:f2eba6cbd093 220 0x8, 0x8, 0xFF, 0x8, 0xFF,
imachooon 0:f2eba6cbd093 221 0x28, 0x28, 0x28, 0xFF, 0x28,
imachooon 0:f2eba6cbd093 222 0x8, 0x8, 0x8, 0xF8, 0x0,
imachooon 0:f2eba6cbd093 223 0x0, 0x0, 0x0, 0xF, 0x8,
imachooon 0:f2eba6cbd093 224 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
imachooon 0:f2eba6cbd093 225 0xF, 0xF, 0xF, 0xF, 0xF,
imachooon 0:f2eba6cbd093 226 0xFF, 0xFF, 0xFF, 0x0, 0x0,
imachooon 0:f2eba6cbd093 227 0x0, 0x0, 0x0, 0xFF, 0xFF,
imachooon 0:f2eba6cbd093 228 0xF0, 0xF0, 0xF0, 0xF0, 0xF0,
imachooon 0:f2eba6cbd093 229 0x1C, 0x22, 0x22, 0x1C, 0x22,
imachooon 0:f2eba6cbd093 230 0x3E, 0x54, 0x54, 0x7C, 0x28,
imachooon 0:f2eba6cbd093 231 0x7E, 0x40, 0x40, 0x60, 0x60,
imachooon 0:f2eba6cbd093 232 0x40, 0x7E, 0x40, 0x7E, 0x40,
imachooon 0:f2eba6cbd093 233 0xC6, 0xAA, 0x92, 0x82, 0xC6,
imachooon 0:f2eba6cbd093 234 0x1C, 0x22, 0x22, 0x3C, 0x20,
imachooon 0:f2eba6cbd093 235 0x2, 0x7E, 0x4, 0x78, 0x4,
imachooon 0:f2eba6cbd093 236 0x60, 0x40, 0x7E, 0x40, 0x40,
imachooon 0:f2eba6cbd093 237 0x99, 0xA5, 0xE7, 0xA5, 0x99,
imachooon 0:f2eba6cbd093 238 0x38, 0x54, 0x92, 0x54, 0x38,
imachooon 0:f2eba6cbd093 239 0x32, 0x4E, 0x80, 0x4E, 0x32,
imachooon 0:f2eba6cbd093 240 0xC, 0x52, 0xB2, 0xB2, 0xC,
imachooon 0:f2eba6cbd093 241 0xC, 0x12, 0x1E, 0x12, 0xC,
imachooon 0:f2eba6cbd093 242 0x3D, 0x46, 0x5A, 0x62, 0xBC,
imachooon 0:f2eba6cbd093 243 0x7C, 0x92, 0x92, 0x92, 0x0,
imachooon 0:f2eba6cbd093 244 0x7E, 0x80, 0x80, 0x80, 0x7E,
imachooon 0:f2eba6cbd093 245 0x54, 0x54, 0x54, 0x54, 0x54,
imachooon 0:f2eba6cbd093 246 0x22, 0x22, 0xFA, 0x22, 0x22,
imachooon 0:f2eba6cbd093 247 0x2, 0x8A, 0x52, 0x22, 0x2,
imachooon 0:f2eba6cbd093 248 0x2, 0x22, 0x52, 0x8A, 0x2,
imachooon 0:f2eba6cbd093 249 0x0, 0x0, 0xFF, 0x80, 0xC0,
imachooon 0:f2eba6cbd093 250 0x7, 0x1, 0xFF, 0x0, 0x0,
imachooon 0:f2eba6cbd093 251 0x10, 0x10, 0xD6, 0xD6, 0x10,
imachooon 0:f2eba6cbd093 252 0x6C, 0x48, 0x6C, 0x24, 0x6C,
imachooon 0:f2eba6cbd093 253 0x60, 0xF0, 0x90, 0xF0, 0x60,
imachooon 0:f2eba6cbd093 254 0x0, 0x0, 0x18, 0x18, 0x0,
imachooon 0:f2eba6cbd093 255 0x0, 0x0, 0x8, 0x8, 0x0,
imachooon 0:f2eba6cbd093 256 0xC, 0x2, 0xFF, 0x80, 0x80,
imachooon 0:f2eba6cbd093 257 0x0, 0xF8, 0x80, 0x80, 0x78,
imachooon 0:f2eba6cbd093 258 0x0, 0x98, 0xB8, 0xE8, 0x48,
imachooon 0:f2eba6cbd093 259 0x0, 0x3C, 0x3C, 0x3C, 0x3C,};