patterns.h

Committer:
Midimetric
Date:
2011-02-06
Revision:
5:1c78c0b4f513
Parent:
2:d6e572640dcc

File content as of revision 5:1c78c0b4f513:

#ifndef PATTERNS_H
#define PATTERNS_H

const unsigned char DOGMLCD_full[] = { 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF };
const unsigned char DOGMLCD_dark[] = { 0xFF,0x55,0xFF,0x55,0xFF,0x55,0xFF,0x55 };
const unsigned char DOGMLCD_grey[] = { 0x55,0xAA,0x55,0xAA,0x55,0xAA,0x55,0xAA };
const unsigned char DOGMLCD_lite[] = { 0x55,0x00,0x55,0x00,0x55,0x00,0x55,0x00 };
const unsigned char DOGMLCD_void[] = { 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 };
const unsigned char DOGMLCD_bars[] = { 0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00 };
const unsigned char DOGMLCD_lito[] = { 0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55 };
const unsigned char DOGMLCD_wave[] = { 0x11,0x88,0x44,0x88,0x11,0x22,0x44,0x22 };
const unsigned char DOGMLCD_diag[] = { 0x88,0x44,0x22,0x11,0x88,0x44,0x22,0x11 };
const unsigned char DOGMLCD_slah[] = { 0x11,0x22,0x44,0x88,0x11,0x22,0x44,0x88 };
const unsigned char DOGMLCD_cros[] = { 0x55,0x22,0x55,0x88,0x55,0x22,0x55,0x88 };
const unsigned char DOGMLCD_grek[] = { 0x80,0xFE,0x02,0xFA,0x8A,0xBA,0xA2,0xBE };

#endif