tags:

views:

20

answers:

1
void lcdinit(void)
{
command1( 0x03 );
command1( 0x03 );
command1( 0x03 );
delay1(20);
command1( 0x02 );   //lcd home
delay1(10);
Command( 0x28 );
delay1(10); 
Command( 0x08 );     //display of cursor off
delay1(10);
Command( 0x0C );       //display on and cursor  off
delay1(10); 
Command( 0x06 );           //shift cursor right
delay1(10);
Command( 0x01 );        //clear display screen
delay1(10);

Q: i have used lcd with atmega32.I have commented the commands which i know.Whats the meaning of uncommented commands ?

A: 

Perhaps you should look at the datasheet for your LCD module. It will show you the command set it supports or at least give you a reference on where you can find the command set.

Yann Ramin