File "lcdtest.c"
Full Path: /home/analogde/www/private/Projet/Sources/lcdtest.c
File size: 793 bytes
MIME-type: text/x-c
Charset: utf-8
/* ===========================================================================
lcdtest.c - Test program for LCD.C
Version: 1.0
Author: Dusty Nidey, Axiom Manufacturing (www.axman.com)
Compiler: GNU for 68HC11 & 68HC12 (www.gnu-m68hc11.org)
This is freeware - use as you like
==============================================================================
------------------------------------------------------------------------------
*/
#include "..\ports_d256.h"
#include "lcd.h"
main(){
char keyval;
LCDInit(); // initialize LCD
LCDputs("Hello 1234567890_AB"); // line 1
LCDputs("Line 3 1234567890_AB"); // line 3
LCDputs("Line 2 1234567890_AB"); // line 2
LCDputs("Line 4 1234567890_AB"); // line 4
}