0% found this document useful (0 votes)
7 views4 pages

Code

Uploaded by

v8vg5tpwqh
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
7 views4 pages

Code

Uploaded by

v8vg5tpwqh
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 4

:Code

char kp;//insigne dint kp

;char keypadPort at PORTD

;sbit LCD_RS at RB0_bit

;sbit LCD_EN at RB1_bit

;sbit LCD_D4 at RB4_bit


;sbit LCD_D5 at RB5_bit

;sbit LCD_D6 at RB6_bit

;sbit LCD_D7 at RB7_bit

;sbit LCD_RS_Direction at TRISB0_bit

;sbit LCD_EN_Direction at TRISB1_bit

;sbit LCD_D4_Direction at TRISB4_bit

;sbit LCD_D5_Direction at TRISB5_bit

;sbit LCD_D6_Direction at TRISB6_bit

;sbit LCD_D7_Direction at TRISB7_bit

{ )(void main

;int cnt = 0

;)(Keypad_Init

;)(Lcd_Init

;Lcd_Cmd(_LCD_CLEAR)

;Lcd_Cmd(_LCD_CURSOR_OFF)

;Lcd_Out(3, 2, "The Engineering")

;Lcd_Out(4, 5, "Projects")

;Lcd_Out(1, 1, "Key Pressed:")


{ do

do

;)(kp = Keypad_Key_Click

;while (!kp)

{ switch (kp)

case 1: kp = 49; break; // 1

case 2: kp = 50; break; // 2

case 3: kp = 51; break; // 3

case 4: kp = 65; break; // A

case 5: kp = 52; break; // 4

case 6: kp = 53; break; // 5

case 7: kp = 54; break; // 6

case 8: kp = 66; break; // B

case 9: kp = 55; break; // 7

case 10: kp = 56; break; // 8

case 11: kp = 57; break; // 9

case 12: kp = 67; break; // C

* // ;case 13: kp = 42; break

case 14: kp = 48; break; // 0

# // ;case 15: kp = 35; break

case 16: kp = 68; break; // D


}

;Lcd_Chr(1, 14, kp)

;while (1) }

You might also like