Complete Keypad Example


Closed Thread
Results 1 to 19 of 19

Hybrid View

  1. #1
    T.Jackson's Avatar
    T.Jackson Guest


    Did you find this post helpful? Yes | No

    Post

    I haven't seen Mister_e's keypad routine. Anyone have the link handy?

  2. #2
    T.Jackson's Avatar
    T.Jackson Guest


    Did you find this post helpful? Yes | No

    Post First paragraph under schematic.

    Notes & Eratta:
    First paragraph under schematic I state: Also, it's worth while noting that the 4MHz crystal isn't critical, you could if you wish use an RC oscillator. You'll save a few bucks. <hr/>*This assumes that you won't be connecting the keypad to the serial port. A crystal is mandatory if you intend to build the project entirely as presented.

  3. #3
    Join Date
    Jul 2003
    Location
    Colorado Springs
    Posts
    4,959


    Did you find this post helpful? Yes | No

    Default

    Quote Originally Posted by T.Jackson View Post
    I haven't seen Mister_e's keypad routine. Anyone have the link handy?

    But that's OK,

    new entries (ways) are welcome!
    <br>
    DT

  4. #4
    Join Date
    Jun 2007
    Location
    TÜRKİYE
    Posts
    3


    Did you find this post helpful? Yes | No

    Default TeŞekkürler

    güzel çalışma teşekkür ederim



    TÜRKİYE
    Last edited by Archangel; - 2nd July 2015 at 07:25.

  5. #5
    Join Date
    Sep 2004
    Location
    montreal, canada
    Posts
    6,898


    Did you find this post helpful? Yes | No

    Default

    Quote Originally Posted by langtolan.com
    güzel çalışma teşekkür ederim can't be found
    Désolé je ne comprends pas

    Sayzer?
    Steve

    It's not a bug, it's a random feature.
    There's no problem, only learning opportunities.

  6. #6
    Join Date
    Jul 2007
    Location
    paris
    Posts
    22


    Did you find this post helpful? Yes | No

    Default Spy

    I find the T.Jackson program very well, but I need a routine or a help for a program, to make a spy, to see example thank you

    Col_1 VAR PORTB.4
    Col_2 VAR PORTB.5
    Col_3 VAR PORTB.6

    Row_1 VAR PORTB.3
    Row_2 VAR PORTB.2
    Row_3 VAR PORTB.1
    Row_4 VAR PORTB.0



    Col_1/ Row_1 = 1
    Col_1/ Row_2 = 4
    Col_1/ Row_3 = 7
    Col_1/ Row_4 = *

    Col_2/ Row_1 = 2
    Col_2/ Row_2 = 5
    Col_2/ Row_3 = 8
    Col_2/ Row_4 = 0

    Col_3/ Row_1 = 3
    Col_3/ Row_2 = 6
    Col_3/ Row_3 = 9
    Col_3/ Row_4 = #

    CASE 1
    Col_1 = 0
    Row_1 = 0
    Row_2 = 0
    Row_3 = 0
    Row_4 = 0


    '// 1 Key
    IF Row_1 = 0 THEN
    IF Allow_Key = 0 THEN
    Key_Press = 1
    Allow_Key = 1
    ENDIF
    ENDIF
    '// 4 Key
    IF Row_2 = 0 THEN
    IF Allow_Key = 0 THEN
    Key_Press = 4
    Allow_Key = 1
    ENDIF
    ENDIF
    '// 7 Key
    IF Row_3 = 0 THEN
    IF Allow_Key = 0 THEN
    Key_Press = 7
    Allow_Key = 1
    ENDIF
    ENDIF
    '// * Key
    IF Row_4 = 0 THEN
    IF Allow_Key = 0 THEN
    Key_Press = 42
    Allow_Key = 1
    ENDIF
    ENDIF

    Scan_Col = 0

    http://www.electroniquepratique.com/...idMg=44&id=523

    Mini espion pour clavier de PC
    Attached Images Attached Images  

Similar Threads

  1. 4x4 keypad Help
    By aaliyah1 in forum mel PIC BASIC Pro
    Replies: 6
    Last Post: - 5th October 2010, 16:34
  2. HARDWARE I2C SAMPLE CODE question
    By Michael Wakileh in forum Code Examples
    Replies: 2
    Last Post: - 16th June 2009, 21:07
  3. Keypad input test
    By Kalind in forum mel PIC BASIC Pro
    Replies: 9
    Last Post: - 8th October 2008, 04:00
  4. Need help in matrix keypad coding
    By rano_zen06 in forum mel PIC BASIC Pro
    Replies: 15
    Last Post: - 24th May 2008, 13:16
  5. novice need help for a security keypad
    By davleo in forum mel PIC BASIC Pro
    Replies: 12
    Last Post: - 17th November 2003, 21:54

Members who have read this thread : 0

You do not have permission to view the list of names.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts