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.

How does the enable pin(pin 6) of JHD12864E function?

Status
Not open for further replies.

saur

Member level 2
Joined
Feb 23, 2012
Messages
45
Helped
2
Reputation
4
Reaction score
2
Trophy points
1,288
Activity points
1,621
Can anyone tell me how does the enable pin(pin 6) of JHD12864E function?
I mean to ask...that whether it is just to enable the GLCD or whether its function is to latch data using a high to low or low to high transition...
Thank u in advance....
waiting for replies from all of u....
 

  • Like
Reactions: saur

    saur

    Points: 2
    Helpful Answer Positive Rating
Re: JHD12864E enable pin

One use :-----
There are 2 ways to send commands/data to LCD. --(1) Call a time delay before sending next data/command to an LCD (2) To monitor the busy flag before issuing a command / data to the LCD.

Note:- D7 bit of (command reg) LCD is busy flag .To check that flag you need to make R/S=1 and RS=0 and a low to high pulse for the E pin. After that D7 pin reflects the state of busy flag.

Suppose D7 is connected to P1.7.READY:

SETB P1.7 ;To make P1.7 input port
CLR P2.0 ;RS=0 to access command reg
SETB P2.1 ;R/W = 1 to read command Reg
BACK:

CLR P2.2 ;E=0 to provide low to high pulse
ACALL DELAY ; give some time(pulse time)
SETB P2.2 ; low to high pulse ends
JB P1.7,BACK ; stay till busy flag=0
RET


So that was an example:-

Pin 6 is the Enable pin. When this goes from low to high and then to low again the LCD reads pins 4,5 and 7-14.
 
Last edited:
  • Like
Reactions: saur

    saur

    Points: 2
    Helpful Answer Positive Rating
Re: JHD12864E enable pin

Thanks...
Ur replies were very useful....
thanks a lot....
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top