#ifndef  LCD_H
#define  LCD_H

#define SCROLLING       1       /* the display modes    */
#define CURSOR          2
#define NONSCROLLING    0
#define NOCURSOR        0

#define NEWLINE        10       /* ASCII code for new line */
#define NL             NEWLINE
#define CARRIAGERETURN 13       /* ASCII code for carriage return */
#define CR             CARRIAGERETURN

#endif
