Hi Paulvk,
Thanks for the reply,
The problem is that I can't get the data out. I've tried different ways of doing the same thing.
I tried transcribing some "C", shown below, but that data is still NOT forth coming, I always seem to either get the last data byte sent to the display, or some data in the repeating form which is wrong and could mean that the address is not getting automatically incremented as the PDF says it should.
And anyway, the first byte should be &HFF (the vertical of the "P")
Regards
Dean
[code:1:b100563ee9]
unsigned char lcd_read (void)
{
unsigned char _data;
lcd_TRIS=0xFF;
RW = 1; DI=1;
_lcd_enable();
_data = lcd_data;
lcd_TRIS=0x00;
return _data;
}
[/code:1:b100563ee9]
↧