test avoid bulled game

Dependencies:   C12832_lcd LCD_fonts mbed mbed-rtos

Committer:
th_mbed
Date:
Fri Dec 02 04:26:02 2016 +0000
Revision:
0:26e5e770f91b
Child:
1:b8a29dc23cf1
Child:
2:50a76ed8bf55
create test_avoid

Who changed what in which revision?

UserRevisionLine numberNew contents of line
th_mbed 0:26e5e770f91b 1 #ifndef graphics_H
th_mbed 0:26e5e770f91b 2 #define graphics_H
th_mbed 0:26e5e770f91b 3 #include "C12832_lcd.h"
th_mbed 0:26e5e770f91b 4
th_mbed 0:26e5e770f91b 5 // graphics for the Christmas Demo
th_mbed 0:26e5e770f91b 6 //
th_mbed 0:26e5e770f91b 7 // Copyright (c) 2012 Peter Drescher - DC2PD
th_mbed 0:26e5e770f91b 8 // made by hand - I have to look for a tool ;-)
th_mbed 0:26e5e770f91b 9 // Released under the MIT License: http://mbed.org/license/mit
th_mbed 0:26e5e770f91b 10
th_mbed 0:26e5e770f91b 11 static char Person[] = {
th_mbed 0:26e5e770f91b 12 0x30,
th_mbed 0:26e5e770f91b 13 0x70,
th_mbed 0:26e5e770f91b 14 0x28,
th_mbed 0:26e5e770f91b 15 0x70,
th_mbed 0:26e5e770f91b 16 0xA0,
th_mbed 0:26e5e770f91b 17 0x50
th_mbed 0:26e5e770f91b 18 };
th_mbed 0:26e5e770f91b 19
th_mbed 0:26e5e770f91b 20 Bitmap bitmPersonB = {
th_mbed 0:26e5e770f91b 21 6, // XSize
th_mbed 0:26e5e770f91b 22 6, // YSize
th_mbed 0:26e5e770f91b 23 1, // Bytes in Line
th_mbed 0:26e5e770f91b 24 PersonB, // Pointer to picture data
th_mbed 0:26e5e770f91b 25 };
th_mbed 0:26e5e770f91b 26
th_mbed 0:26e5e770f91b 27 static char PersonB[] = {
th_mbed 0:26e5e770f91b 28 0x30,
th_mbed 0:26e5e770f91b 29 0x70,
th_mbed 0:26e5e770f91b 30 0xA0,
th_mbed 0:26e5e770f91b 31 0x70,
th_mbed 0:26e5e770f91b 32 0x24,
th_mbed 0:26e5e770f91b 33 0x50
th_mbed 0:26e5e770f91b 34 };
th_mbed 0:26e5e770f91b 35
th_mbed 0:26e5e770f91b 36 Bitmap bitmPersonB = {
th_mbed 0:26e5e770f91b 37 6, // XSize
th_mbed 0:26e5e770f91b 38 6, // YSize
th_mbed 0:26e5e770f91b 39 1, // Bytes in Line
th_mbed 0:26e5e770f91b 40 PersonB, // Pointer to picture data
th_mbed 0:26e5e770f91b 41 };
th_mbed 0:26e5e770f91b 42
th_mbed 0:26e5e770f91b 43 #endif