Skip to content

Instantly share code, notes, and snippets.

@srikantpatnaik
Created January 2, 2017 05:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save srikantpatnaik/1b9bb26e05e8abfe831fffe1b693ab28 to your computer and use it in GitHub Desktop.
Save srikantpatnaik/1b9bb26e05e8abfe831fffe1b693ab28 to your computer and use it in GitHub Desktop.
Arduino code for lcd-keypad interfacing
#include <Keypad.h>
#include <LiquidCrystal.h>
#include <string.h>
LiquidCrystal lcd(13, 12, 11, 10, 9, 8);
char keys[4][4] = { //declare an array
{'1','2','3','A'},
{'4','5','6','B'},
{'7','8','9','C'},
{'*','0','#','D'}
};
byte rowPins[4] = {7, 6, 5, 4};
byte colPins[4] = {3, 2, 1, 0};
//initialize an instance of class Keypad
Keypad mykeypad = Keypad(makeKeymap(keys), rowPins, colPins, 4, 4);
char mypasswd[5] = {'1','2','1','1',0};
char getpasswd[5];
int i=0;
void setup() {
lcd.begin(16,2);
}
void loop() {
char key = mykeypad.getKey() ;
if ((key != NO_KEY) && (i<4)){
getpasswd[i++]=key;
lcd.setCursor(0,1);
lcd.print(key);
}
getpasswd[4]=0; //append NULL char
if (strcmp( getpasswd, mypasswd ) == 0){
lcd.setCursor(0,0);
lcd.print("password matched");
pinMode(A0, OUTPUT); //using analog input pin as digital
digitalWrite(A0, HIGH);
}
}
@srikantpatnaik
Copy link
Author

Associated circuit.
lcd-keypad

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment