1
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
/*###############################################################################
;# TITLE "LCD Display"
;#
;# Program :External LCD
;# Version :1.0
;# Revision Date :6/9/03
;# Author :Naveen Raj
;#
;# Program demonstrates use of External LCD Module
;# general purpose library module.*/
/*###############################################################################*/
#include "xlcd.h"
#define XLCDCursorOnBlinkOn() XLCDCommand(0x0F) //the user may refer the LCD data sheet
#define XLCDCursorOnBlinkOff() XLCDCommand(0x0E) //and generate commands like this
#define XLCDDisplayOnCursorOff() XLCDCommand(0x0C)
#define XLCDDisplayOff() XLCDCommand(0x08)
#define XLCDCursorMoveLeft() XLCDCommand(0x10)
#define XLCDCursorMoveRight() XLCDCommand(0x14)
#define XLCDDisplayMoveLeft() XLCDCommand(0x18)
#define XLCDDisplayMoveRight() XLCDCommand(0x1C)
rom const unsigned char aaa[]="Hello";
ram const unsigned char bbb[]="Microchip";