Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

LCD display initialize

Status
Not open for further replies.

hideaki

Newbie level 6
Joined
Jul 19, 2006
Messages
11
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,344
lcd initialization

How to initialize LCD display(connected as shown below) and the program. I'm using 68HC11A1P with boostrap mode. i just wanted to show any word on the LCD.

**broken link removed**
 

initialize lcd

Hi Hideaki,
Generally the LCD initialization sequence is provided in the LCD datasheet. Please refer to the datasheet. If you can provide me with the part number of LCD that you are using, I'll try to find that out.

Regards,
 

lcd initialize

@vhn
thanks. the datasheet provided is same with this acrobat reader file **broken link removed**

the LCD that I use is SGL-VCM1602A. the 68hc11a1p bootstrap mode is already working when i burn a certain program such running light, dancing, disco and so on with using Wp11.
for example(free running light):


ORG $B600

PORTA EQU $1000
PORTB EQU $4

LDX #PORTA
REPEAT LDAA #$1
AGAIN STAA PORTB,X
BSR DELAY
LSLA
BCS REPEAT
BRA AGAIN
END

DELAY LDY #$9FFF
AGAIN1 DEY
BNE AGAIN1
RTS
END
the LCD is connected to the 68hc11a1p as shown in the first post.

Regards.

*Added 10oct2007
by using command with giving input low to RS, I've succeed making my LCD display showing a character. But, no matter how is the input I trying to display. it only showing a $FF character.
anyone can help?
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top