Email: Password: Remember Me | Create Account (Free)

Back to Subject List

Old thread has been locked -- no new posts accepted in this thread
???
09/21/11 13:43
Read: times


 
#183838 - testing and debugging
Responding to: ???'s previous message
I checked the algorithm initialization with LCD's Datasheet. (but not sure)

i tested only "delay" function. it work with LEDs.

Now i'm trying to check this
void lcd_write(unsigned char c)
{
 P3MDOUT = 0x1E;
lcdport = (c & 0x0F) << 4; //send lower-order nibble
LCD_EN = 1;
Delay(50);//200microseconds
LCD_EN = 0; //LCD_STROBE;
lcdport = (c & 0xF0); // send higher-order nibble
LCD_EN = 1;
Delay(50);//200microseconds
LCD_EN = 0;//LCD_STROBE;

}
 



List of 4 messages in thread
TopicAuthorDate
LCD DV16210 interfacing            01/01/70 00:00      
   I have tried many different versions            01/01/70 00:00      
      testing and debugging            01/01/70 00:00      
   two comments            01/01/70 00:00      

Back to Subject List