| ??? 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;
}
|
| Topic | Author | Date |
| 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 |



