Skip to content

Instantly share code, notes, and snippets.

@Robotonics
Created October 20, 2016 22:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Robotonics/9b2fa2ed288217a36d441b55ead8e305 to your computer and use it in GitHub Desktop.
Save Robotonics/9b2fa2ed288217a36d441b55ead8e305 to your computer and use it in GitHub Desktop.
Header file containing arrays for 16x8 pixel graphics used in ir_robot.ino
uint8_t Bitmap_EyesFR[16]=
{
0x00,0x3c,0x42,0x5a,0x5a,0x42,0x3c,0x00,0x00,0x3c,0x42,0x5a,0x5a,0x42,0x3c,0x00
};
//int move_times = sizeof(string_data)*6;
uint8_t Bitmap_EyesTR[16]=
{
0x00,0x3c,0x42,0x42,0x72,0x72,0x3c,0x00,0x00,0x3c,0x42,0x42,0x72,0x72,0x3c,0x00
};
uint8_t Bitmap_EyesBlink[16]=
{
0x00,0x3c,0x72,0x7a,0x7a,0x72,0x3c,0x00,0x00,0x3c,0x72,0x7a,0x7a,0x72,0x3c,0x00
};
uint8_t Bitmap_EyesFR1[16]=
{
0x1e,0xa1,0xa7,0xa7,0xa1,0xa1,0x1e,0x00,0x00,0x1e,0xa1,0xa1,0xa7,0xa7,0xa1,0x1e
};
uint8_t Bitmap_EyesFR2[16]=
{
0x3e,0x40,0x46,0x46,0x46,0x40,0x3e,0x00,0x00,0x3e,0x40,0x46,0x46,0x46,0x40,0x3e
};
uint8_t Bitmap_EyesBlink2[16]=
{
0x3e,0x7c,0x7e,0x7e,0x7e,0x7c,0x3e,0x00,0x00,0x3e,0x7c,0x7e,0x7e,0x7e,0x7c,0x3e
};
uint8_t Bitmap_Logo[16]=
{
0x00,0x00,0x00,0x7e,0x81,0x81,0xbd,0xa9,0xa9,0x95,0x81,0x81,0x7e,0x00,0x00,0x00
};
uint8_t Bitmap_2016[16]=
{
0x00,0x4f,0x49,0x79,0x00,0x7f,0x41,0x7f,0x00,0x7f,0x00,0x3e,0x49,0x49,0x06,0x00
};
uint8_t Bitmap_Face[16]=
{
0xff,0xc3,0x81,0x00,0x64,0x62,0x01,0x0d,0x0d,0x01,0x62,0x64,0x00,0x81,0xc3,0xff
};
uint8_t Bitmap_EyesRight[16]=
{
0x3e,0x40,0x40,0x46,0x46,0x46,0x3e,0x00,0x00,0x3e,0x40,0x40,0x46,0x46,0x46,0x3e
};
uint8_t Bitmap_EyesLeft[16]=
{
0x3e,0x46,0x46,0x46,0x40,0x40,0x3e,0x00,0x00,0x3e,0x46,0x46,0x46,0x40,0x40,0x3e
};
uint8_t Bitmap_EyesUpLeft[16]=
{
0x3e,0x40,0x40,0x70,0x70,0x70,0x3e,0x00,0x00,0x3e,0x40,0x40,0x70,0x70,0x70,0x3e
};
uint8_t Bitmap_EyesUpRight[16]=
{
0x3e,0x70,0x70,0x70,0x40,0x40,0x3e,0x00,0x00,0x3e,0x70,0x70,0x70,0x40,0x40,0x3e
};
uint8_t Bitmap_EyesUp[16]=
{
0x3e,0x40,0x70,0x70,0x70,0x40,0x3e,0x00,0x00,0x3e,0x40,0x70,0x70,0x70,0x40,0x3e
};
uint8_t Bitmap_BoxFace[16]=
{
0x00,0x00,0x00,0x00,0xff,0x81,0xa9,0x8d,0x8d,0xa9,0x81,0xff,0x00,0x00,0x00,0x00
};
uint8_t Bitmap_Auto_Text[16]=
{
0x3e,0x48,0x48,0x3e,0x00,0x7e,0x02,0x7e,0x00,0x40,0x7e,0x40,0x00,0x7e,0x42,0x7e
};
uint8_t Bitmap_Ir_Text[16]=
{
0x00,0x00,0x00,0x42,0x7e,0x42,0x00,0x00,0x00,0x7e,0x48,0x48,0x36,0x00,0x00,0x00
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment