test avoid bulled game

Dependencies:   C12832_lcd LCD_fonts mbed mbed-rtos

Revision:
0:26e5e770f91b
Child:
1:b8a29dc23cf1
Child:
2:50a76ed8bf55
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/graphics.h	Fri Dec 02 04:26:02 2016 +0000
@@ -0,0 +1,43 @@
+#ifndef graphics_H
+#define graphics_H
+#include "C12832_lcd.h" 
+
+// graphics for the Christmas Demo
+//
+// Copyright (c) 2012 Peter Drescher - DC2PD
+// made by hand - I have to look for a tool ;-)
+// Released under the MIT License: http://mbed.org/license/mit
+
+static char Person[] = {
+  0x30,
+  0x70,
+  0x28,
+  0x70,
+  0xA0,
+  0x50
+};
+
+Bitmap bitmPersonB = {
+  6, // XSize
+  6, // YSize
+  1, // Bytes in Line
+  PersonB,  // Pointer to picture data 
+};
+
+static char PersonB[] = {
+  0x30,
+  0x70,
+  0xA0,
+  0x70,
+  0x24,
+  0x50
+};
+
+Bitmap bitmPersonB = {
+  6, // XSize
+  6, // YSize
+  1, // Bytes in Line
+  PersonB,  // Pointer to picture data 
+};
+
+#endif
\ No newline at end of file