0
5.6kviews
Show 8051 interface with a 4x4 Matrix keyboard and seven-segment display and hence write a program to identify the key pressed. Assume Look Up table for Seven segment code is located at 0200H.
1 Answer
1
327views
                MOV DPTR, #0200H
                MOV P2,   #0FFH
REPEAT:         MOV P1,   #00H                    
                MOV P1,   #0EH        
                MOV A,    P2         
                CJNE A,   #0FH, PRESSED
                SJMP      REPEAT

KEYPRESSED:     ACALL     DELAY  
                MOV R0,   #00H                                  ; Assume key "0" pressed 
                MOV P1,   #0EH                                  ; checking for row P1.0
                MOV A,    P2                                    ; Read the columns 
                CJNE A, …

Create a free account to keep reading this post.

and 2 others joined a min ago.

Please log in to add an answer.