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.

4x4 matrix keypad ,LCD & Atmega128 interfacing problem?

Status
Not open for further replies.

nihal_2000

Member level 1
Joined
Aug 31, 2009
Messages
33
Helped
3
Reputation
6
Reaction score
3
Trophy points
1,288
Location
India
Activity points
1,496
Hi friends,
I am trying to interface a keyboard and LCD with ATmega128. I have manage to get lcd going but keyboard seems to be creating some problem…..it is not printing 1,5,9,13 which are on first row and first column.
Please try to find this strange behavior code and ckt is attached with.
Please help me!
I have tried every possible thing with hardware ....i think there is some bug in my code it self please .....if you find guide me.


Code:
#include <avr/io.h>             // Include file for AVR
#include <util/delay.h>
#include "lcd.h"
#define keyport PORTA           //Keypad Port
#define keyportddr DDRA         //Data Direction Register
#define keyportpin PINA         //Keypad Port Pins

#define col1 PA0                //Column1 PortA.0
#define col2 PA1                //Column2 PortA.1
#define col3 PA2                //Column3 PortA.2
#define col4 PA3                //Column4 PortA.3

#define TRUE 1
#define FALSE 0

unsigned char keyval;   //A variable


void key_init(){
        keyportddr = 0xF0;
        keyport = 0x0F;
}


unsigned char get_key(){
        unsigned char i,key=1;
        for(i=0;i<4;i++){               //Loop for 4 rows
                keyport &=~(0x80>>i);   //Make rows low one by one
                        if(!(keyportpin & (1<<col1))){
                         //check COL1
                                while(!(keyportpin & (1<<col1)));
                                //wait for release
                                return key;
                                //return pressed key value
                        }
                        if(!(keyportpin & (1<<col2))){
                         //Check COL2
                                key += 1;
                                //Second key pressed
                                while(!(keyportpin & (1<<col2)));
                                //wait for release
                                return key;
                                //return key value
                        }
                        if(!(keyportpin & (1<<col3))){
                         //Check COL3
                                key += 2;
                                //Third key pressed
                                while(!(keyportpin & (1<<col3)));
                                //Wait for release
                                return key;
                                //Return value
                        }
                        if(!(keyportpin & (1<<col4))){
                         //check COL4
                                key += 3;
                                //Fourth key pressed
                                while(!(keyportpin & (1<<col4)));
                                //Wait for release
                                return key;
                                //Return key value
                        }
                key +=4;        //Next row
                keyport |= 0x80>>i;
                //make read row high again
        }
        return FALSE;   //return false if no key pressed
}

int main(void){
   
   MCUCSR=0x80;
      MCUCSR=0x80;
   
   //Initialize LCD module
   InitLCD(LS_BLINK|LS_ULINE);

   //Clear the screen
   LCDClear();

   //Simple string printing
   LCDWriteString("Type the Number ");     
   
   unsigned char keyval;

   key_init();
   
   while(1){
   
      keyval = get_key();
      if(keyval != 0){

               LCDClear();

               LCDWriteString("You have entered");

               LCDWriteIntXY(1,1,keyval,3);

                     }
   
         }
   
   
   
   
         }
 

Re: 4x4 matrix keypad ,LCD & Atmega128 interfacing probl

Hi friends, thanks for your cop ration, I manage to get rid of this problem...Just making keyport high before making rows low.

Code:
unsigned char get_key(){
        unsigned char i,key=1;
        for(i=0;i<4;i++){               //Loop for 4 rows
                keyport |= 0xf0;           //Make rows high
                keyport &=~(0x80>>i);   //Make rows low one by one
                        if(!(keyportpin & (1<<col1))){
                         //check COL1
                                while(!(keyportpin & (1<<col1)));
                                //wait for release
                                return key;
                                //return pressed key value
 
  • Like
Reactions: king15

    king15

    Points: 2
    Helpful Answer Positive Rating
Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top