You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

86 lines
891 B

uint8_t up[8] = {
0b00000,
0b00100,
0b01110,
0b10101,
0b00100,
0b00100,
0b00100,
0b00000
};
uint8_t down[8] = {
0b00000,
0b00100,
0b00100,
0b00100,
0b10101,
0b01110,
0b00100,
0b00000
};
uint8_t bullet[8] = {
0b00000,
0b00100,
0b00010,
0b11111,
0b00010,
0b00100,
0b00000,
0b00000
};
uint8_t right[8] = {
0b00000,
0b00100,
0b00010,
0b11111,
0b10010,
0b10100,
0b10000,
0b00000
};
uint8_t left[8] = {
0b00000,
0b00100,
0b01000,
0b11111,
0b01001,
0b00101,
0b00001,
0b00000
};
uint8_t pause[8] = {
0b00000,
0b00000,
0b01010,
0b01010,
0b01010,
0b01010,
0b00000,
0b00000
};
uint8_t agrave[8] = {
0b01000,
0b00100,
0b01110,
0b00001,
0b01111,
0b10001,
0b01111,
0b00000
};
uint8_t ecirc[8] = {
0b00100,
0b01010,
0b01110,
0b10001,
0b11111,
0b10001,
0b01110,
0b00000
};