??? 02/02/08 06:55 Read: times |
#150195 - For a start Responding to: ???'s previous message |
Why are you doing LCD_BUS_PORT |= 0x30; ??
Try LCD_BUS_PORT = 0x30; And the same for the rest of the code. Doing |= will set bits, but when you want to output 0x20, it will actually be 0x30 as you had previously set those bits. |