Versión de Firmware con funciones de RAM incorporadas.

Dependencies:   mbed

Fork of VmRecorderV1dot1 by virtualmech

Doggy/patterns.h

Committer:
JuanManuelAmador
Date:
2015-07-14
Revision:
2:e818c80e6d5c
Parent:
0:3d456b8ce449

File content as of revision 2:e818c80e6d5c:

#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