LCD display
Only 4 data wires are connected - only Port B required
LCD
display driver Define CONF_WORD =
0x3f72 |
LCD
display driver - minimum required since the LCD is wired as the default
- eva_test_lcd_default.bas AllDigital 'this assumes the HD44780 LCD is connected to ' port B as in the palmtronics board - all defaults assumed Lcdinit 3 'curser type Dim a As Word a = 65535 loop: Lcdcmdout LcdClear Lcdout "I am counting!" Lcdcmdout LcdLine2Home Lcdout #a a = a - 1 'WaitMs 1000 Goto loop |