On Sep 9, 2025, at 5:05 PM, John Sandlin <sandli...@gmail.com> wrote:
The physical assembly is done. And the toggle and LEDs are working. But the LCD Module is not showing text sent to it. I used the little basic program for the LCD Module:
10 R=218 : REM 0xDA - Register 20 D=219 : REM 0xDB - Data 30 OUT R,56 : REM 0011 1000 - Function 8 bit, 2 lines, 5x8 dot font 40 OUT R,14 : REM 0000 1110 - Display on, cursor on, no blink 50 OUT R,1 : REM 0000 0001 - Clear display 60 INPUT "Text to display";T$ 70 FOR A=1 TO LEN(T$) 80 PRINT MID$(T$,A,1); 90 OUT D,ASC (MID$(T$,A,1)) 100 NEXT AI do have it jumpered for 0xDA and 0xDB, so the program is correct as is. Lines 30 through 50 execute and the LCD module responds by clearing the screen. But then the line 90 sending to the Data port doesn't display any text, though line 80 works fine to my terminal. I used up all my time today, so tomorrow I plan to put my o-scope on the data pins (one at a time, I don't have a logic analyzer, to see if I can see the data coming across for the text (The unsurprising "RC2014", entered in response to the prompt in line 60)
<IMG_20250909_182855860_HDR.jpg>You can see here, before doing anything, all the LEDs on the I/O panel are working. The switches work, booting into the selected slice, and the module backlight is good and the contrast appears good. Then I send the clear module and try to send the text, then it sits there blank, glowing greenly.Looks good so far, just need to find where that text data is leaking off to and direct it back to the LCD module. Any hints or thoughts?
--
You received this message because you are subscribed to the Google Groups "RC2014-Z80" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rc2014-z80+...@googlegroups.com.
To view this discussion, visit https://groups.google.com/d/msgid/rc2014-z80/37371ec7-e5b8-4aaa-983c-c9ab23ec60e6n%40googlegroups.com.
<IMG_20250909_182855860_HDR.jpg>
To view this discussion, visit https://groups.google.com/d/msgid/rc2014-z80/847e5ef9-97cc-4768-802e-d1ba30adaba2n%40googlegroups.com.
Good work on tracking that down. From your earlier symptoms I
suspected it might be a data line or two, such that the Display
Clear signal got through but maybe not other messages. Things like
that can be really tricky to track down... right up until you see
it and it's obvious :-)
Spencer
To view this discussion, visit https://groups.google.com/d/msgid/rc2014-z80/404dfaec-598d-44b6-b1a4-746239e6b393n%40googlegroups.com.