Shop OBEX P1 Docs P2 Docs Learn Events
Questions about keypad — Parallax Forums

Questions about keypad

ArchiverArchiver Posts: 46,084
edited 2000-06-09 03:43 in General Discussion
> 3- I need information about EDE 1144 IC keypad encoder from Jameco.

This is made by E-Labs You can check out the details on it at
http://www.elabinc.com/

Tim
[noparse][[/noparse]Denver, CO]

Comments

  • ArchiverArchiver Posts: 46,084
    edited 2000-06-08 00:39
    refer losa Number 157 in the basic stamp list of stamp applications, no
    encoder required, just a cheap keypad, plus some of the code is included.
    regards, Chris
    Original Message
    From: Mohamed REFKY <refky@h...>
    To: <basicstamps@egroups.com>
    Sent: Thursday, June 08, 2000 4:51 AM
    Subject: [noparse][[/noparse]basicstamps] Questions about keypad


    > Hello group,
    > I have some questions about keypad:
    > 1- Keypad gives the value of the key that has been pressed.
    > How can I do the following with BS2:
    > pressing key '2', the display is '2'and when pressing key '3',the
    > display is '23'.. and so on ?
    >
    > 2- Where can I get inexpensive keypad kit.
    > 3- I need information about EDE 1144 IC keypad encoder from Jameco.
    >
    > Thank you in advance
    > Mohamed refky
    >
    > ________________________________________________________________________
    > Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com
    >
    >
    >
    >
  • ArchiverArchiver Posts: 46,084
    edited 2000-06-08 01:31
    > Hello group,
    > I have some questions about keypad:
    > 1- Keypad gives the value of the key that has been pressed.
    > How can I do the following with BS2:
    > pressing key '2', the display is '2'and when pressing key '3',the
    > display is '23'.. and so on ?

    If you want to get the number 23 from two seperate keypresses
    you can setup a couple byte variables to hold each key value
    received, and

    1. Multiply the first digit received by 10
    2. Grab the second key value and simply add it to the first.

    IE,, the first digit received is 2, and you store it in B0, then B0 = B0 X
    10.
    you now have 20. The second digit arrives and you add it to B0. You
    now have the number 23........ after two key presses.

    > 2- Where can I get inexpensive keypad kit.

    http://www.rentron.com/Ser-Key.htm This is a 10-key serial key encoder PIC
    that takes key entry from simple push-button switches. You won't need to
    buy an expensive keypad, just use any el-cheapo normally-open push-button
    switches to build your own 10-key serial keypads.

    It was specifically designed for the Basic Stamp, and the
    baud rate can be changed on-the-fly from N2400 to N9600.

    Bruce
    http://www.rentron.com


    > 3- I need information about EDE 1144 IC keypad encoder from Jameco.
    >
    > Thank you in advance
    > Mohamed refky
    >
    > ________________________________________________________________________
    > Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com
    >
    >
    >
    >
    >
    >
  • ArchiverArchiver Posts: 46,084
    edited 2000-06-08 02:51
    Hello group,
    I have some questions about keypad:
    1- Keypad gives the value of the key that has been pressed.
    How can I do the following with BS2:
    pressing key '2', the display is '2'and when pressing key '3',the
    display is '23'.. and so on ?

    2- Where can I get inexpensive keypad kit.
    3- I need information about EDE 1144 IC keypad encoder from Jameco.

    Thank you in advance
    Mohamed refky

    ________________________________________________________________________
    Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com
  • ArchiverArchiver Posts: 46,084
    edited 2000-06-09 02:32
    Dear Sir,
    Refer to losa number 157,ther is :
    E-mail author for source code.

    Thank You
    Mohamed Refky


    >From: "Chris Anderson" <fes@g...>
    >Reply-To: basicstamps@egroups.com
    >To: <basicstamps@egroups.com>
    >Subject: Re: [noparse][[/noparse]basicstamps] Questions about keypad
    >Date: Thu, 8 Jun 2000 07:39:00 +0800
    >
    >refer losa Number 157 in the basic stamp list of stamp applications, no
    >encoder required, just a cheap keypad, plus some of the code is included.
    > regards, Chris
    >
    Original Message
    >From: Mohamed REFKY <refky@h...>
    >To: <basicstamps@egroups.com>
    >Sent: Thursday, June 08, 2000 4:51 AM
    >Subject: [noparse][[/noparse]basicstamps] Questions about keypad
    >
    >
    > > Hello group,
    > > I have some questions about keypad:
    > > 1- Keypad gives the value of the key that has been pressed.
    > > How can I do the following with BS2:
    > > pressing key '2', the display is '2'and when pressing key '3',the
    > > display is '23'.. and so on ?
    > >
    > > 2- Where can I get inexpensive keypad kit.
    > > 3- I need information about EDE 1144 IC keypad encoder from Jameco.
    > >
    > > Thank you in advance
    > > Mohamed refky
    > >
    > > ________________________________________________________________________
    > > Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com
    > >
    > >
    > >
    > >
    >
    >
    >
    >
    >

    ________________________________________________________________________
    Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com
  • ArchiverArchiver Posts: 46,084
    edited 2000-06-09 03:43
    Yes, I understand this, it depends on that I know that the number is two
    digits,but the user may press 2 then 3 (23) or 234 or 2345,three different
    power for 2&3 and two for 4 ....?


    >From: "Bruce" <breyno2@r...>
    >Reply-To: basicstamps@egroups.com
    >To: <basicstamps@egroups.com>
    >Subject: Re: [noparse][[/noparse]basicstamps] Questions about keypad
    >Date: Wed, 7 Jun 2000 18:31:08 -0600
    >
    >
    > > Hello group,
    > > I have some questions about keypad:
    > > 1- Keypad gives the value of the key that has been pressed.
    > > How can I do the following with BS2:
    > > pressing key '2', the display is '2'and when pressing key '3',the
    > > display is '23'.. and so on ?
    >
    >If you want to get the number 23 from two seperate keypresses
    >you can setup a couple byte variables to hold each key value
    >received, and
    >
    >1. Multiply the first digit received by 10
    >2. Grab the second key value and simply add it to the first.
    >
    >IE,, the first digit received is 2, and you store it in B0, then B0 = B0 X
    >10.
    >you now have 20. The second digit arrives and you add it to B0. You
    >now have the number 23........ after two key presses.
    >
    > > 2- Where can I get inexpensive keypad kit.
    >
    >http://www.rentron.com/Ser-Key.htm This is a 10-key serial key encoder PIC
    >that takes key entry from simple push-button switches. You won't need to
    >buy an expensive keypad, just use any el-cheapo normally-open push-button
    >switches to build your own 10-key serial keypads.
    >
    >It was specifically designed for the Basic Stamp, and the
    >baud rate can be changed on-the-fly from N2400 to N9600.
    >
    >Bruce
    >http://www.rentron.com
    >
    >
    > > 3- I need information about EDE 1144 IC keypad encoder from Jameco.
    > >
    > > Thank you in advance
    > > Mohamed refky
    > >
    > > ________________________________________________________________________
    > > Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com
    > >
    > >
    > >
    > >
    > >
    > >
    >
    >
    >
    >
    >

    ________________________________________________________________________
    Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com
Sign In or Register to comment.