Miscellaneous › Others › Displaying Custom Characters on 16*2 LCD › Thanks for the reply. I did
February 14, 2013 at 9:01 am
#9134
pranathi
Participant
Thanks for the reply.
I did the follow the same as givne in the link.
But i couldnt get anything on the disaply.
void BuildCustom(uint8_t ucCGRAMloc, uint8_t *ucpData)
{
uint8_t i;
if(ucCGRAMloc<
{
WriteCmd((DISPLAY_CG_RAM_ADDRESS+ucCGRAMloc*);
for(i=0;i<8;i++)
WriteData(ucpData[ i ]);
}
}
void WriteCustomChar(void)
{ BuildCustomChar(0x01,ucArrow);
WriteCmd(0x64);
WriteString(ucBatteryFull);
SetPos(0,0);
WriteData(0); // Location of LCD where the character is to be displayed
Delay(10);
}
here is my code. Please guide me where am i going wrong