/* * DO NOT REMOVE THIS COPYRIGHT NOTICE * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ * By using this code, the user hereinafter agrees to * abide by all the terms and conditions of the following * agreement that nobody ever reads, as well as the * Geneva Convention and the U.N. Charter and the Secret * Membership Oath of the Benevolent Protective Order of * the Elks and such other terms and conditions, real and * imaginary, as the Software Company shall deem necessary * and appropriate, including the right to come to the user's home * and examine the user's hard drive, as well as the user's * underwear drawer if we feel like it, take it or leave it, until * death do us part, one nation indivisible, by the dawn's early * light,... finders keepers, losers weepers, thanks you've been a * great crowd, and don't forget to tip your servers. * */ /*----------------------------------------------------------------------------*/ #ifndef __lcd_h__ #define __lcd_h__ /*----------------------------------------------------------------------------*/ void InitLCD(void); /*----------------------------------------------------------------------------*/ void ClearScreen(void); /*----------------------------------------------------------------------------*/ void MoveCursor(unsigned char r, unsigned char c); /*----------------------------------------------------------------------------*/ void PutChar(char c); /*----------------------------------------------------------------------------*/ void PrintString(const char* s); /*----------------------------------------------------------------------------*/ #endif