mirror of
https://github.com/ClusterM/fdskey.git
synced 2025-12-19 14:29:21 +01:00
13 lines
274 B
C
13 lines
274 B
C
#ifndef IMAGE_STATE_REC_H
|
|
#define IMAGE_STATE_REC_H
|
|
|
|
#define IMAGE_STATE_REC_WIDTH 10
|
|
#define IMAGE_STATE_REC_HEIGHT 10
|
|
|
|
const unsigned char image_state_rec[] =
|
|
{
|
|
0x30, 0xF0, 0xE3, 0x9F, 0x7F, 0xFF, 0xFF, 0xEF, 0x9F, 0x7F, 0xFC, 0xC0, 0x00
|
|
};
|
|
|
|
#endif // IMAGE_STATE_REC_H
|