Bernard Escaillas / Doggy
Committer:
Midimetric
Date:
Wed Dec 29 09:53:24 2010 +0000
Revision:
0:601fd83c75e0
Child:
2:d6e572640dcc
Alpha version with (poke, wipe, inv, linev, lineh, frame, rect, xchar, xfont)

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Midimetric 0:601fd83c75e0 1 #ifndef PATTERNS_H
Midimetric 0:601fd83c75e0 2 #define PATTERNS_H
Midimetric 0:601fd83c75e0 3
Midimetric 0:601fd83c75e0 4 const unsigned char DOGMLCD_full[] = { 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF };
Midimetric 0:601fd83c75e0 5 const unsigned char DOGMLCD_dark[] = { 0xFF,0x55,0xFF,0x55,0xFF,0x55,0xFF,0x55 };
Midimetric 0:601fd83c75e0 6 const unsigned char DOGMLCD_grey[] = { 0x55,0xAA,0x55,0xAA,0x55,0xAA,0x55,0xAA };
Midimetric 0:601fd83c75e0 7 const unsigned char DOGMLCD_lite[] = { 0x55,0x00,0x55,0x00,0x55,0x00,0x55,0x00 };
Midimetric 0:601fd83c75e0 8 const unsigned char DOGMLCD_void[] = { 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 };
Midimetric 0:601fd83c75e0 9 const unsigned char DOGMLCD_bars[] = { 0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00 };
Midimetric 0:601fd83c75e0 10 const unsigned char DOGMLCD_lito[] = { 0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55 };
Midimetric 0:601fd83c75e0 11 const unsigned char DOGMLCD_wave[] = { 0x11,0x88,0x44,0x88,0x11,0x22,0x44,0x22 };
Midimetric 0:601fd83c75e0 12 const unsigned char DOGMLCD_diag[] = { 0x88,0x44,0x22,0x11,0x88,0x44,0x22,0x11 };
Midimetric 0:601fd83c75e0 13 const unsigned char DOGMLCD_slah[] = { 0x11,0x22,0x44,0x88,0x11,0x22,0x44,0x88 };
Midimetric 0:601fd83c75e0 14 const unsigned char DOGMLCD_cros[] = { 0x55,0x22,0x55,0x88,0x55,0x22,0x55,0x88 };
Midimetric 0:601fd83c75e0 15 const unsigned char DOGMLCD_grek[] = { 0x80,0xFE,0x02,0xFA,0x8A,0xBA,0xA2,0xBE };
Midimetric 0:601fd83c75e0 16
Midimetric 0:601fd83c75e0 17 #endif