test avoid bulled game

Dependencies:   C12832_lcd LCD_fonts mbed mbed-rtos

graphics.h

Committer:
th_mbed
Date:
2016-12-02
Revision:
3:e74b63412b10
Parent:
2:50a76ed8bf55
Parent:
1:b8a29dc23cf1
Child:
6:e63641e13374

File content as of revision 3:e74b63412b10:

#ifndef graphics_H
#define graphics_H
#include "C12832_lcd.h" 

static char Person[] = {
  0x30,
  0x70,
  0x28,
  0x70,
  0xA0,
  0x50
};

Bitmap bitmPerson = {
  6, // XSize
  6, // YSize
  1, // Bytes in Line
  Person,  // Pointer to picture data 
};

static char PersonB[] = {
  0x30,
  0x70,
  0xA0,
  0x70,
  0x28,
  0x50
};

Bitmap bitmPersonB = {
  6, // XSize
  6, // YSize
  1, // Bytes in Line
  PersonB,  // Pointer to picture data 
};

#endif