00001 /*! \file fontgr.h \brief Graphic LCD Font (Graphic Characters). */ 00002 //***************************************************************************** 00003 // 00004 // File Name : 'fontgr.h' 00005 // Title : Graphic LCD Font (Graphic Charaters) 00006 // Author : Pascal Stang 00007 // Date : 10/19/2001 00008 // Revised : 10/19/2001 00009 // Version : 0.1 00010 // Target MCU : Atmel AVR 00011 // Editor Tabs : 4 00012 // 00013 //***************************************************************************** 00014 00015 #ifndef FONTGR_H 00016 #define FONTGR_H 00017 00018 #ifndef WIN32 00019 // AVR specific includes 00020 #include <avr/pgmspace.h> 00021 #endif 00022 00023 static unsigned char __attribute__ ((progmem)) FontGr[] = 00024 { 00025 // format is one character per line: 00026 // length, byte array[length] 00027 0x0A, 0x3C, 0x42, 0x41, 0x41, 0x41, 0x42, 0x42, 0x42, 0x3C, 0x00, // 0. Folder Icon 00028 0x06, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF // 1. Solid 6x8 block 00029 }; 00030 00031 #endif