Hi,
Until there is a dedicated BTEC section, I'll start off the topics with BTEC Course so that it's easy to find and move later if necessary...
I am not a skilled programmer so please go easy on me! I am working through the exercises in your guide: http://www.matrixtsl.com/resources/file ... course.pdf
As per Exercise 9 Program 1 Part 2 - When reading inputs from the keypad, how do you do this without using the macros?
Re: BTEC Course - Exercise 9 Program 1 Part 2 - Keypad program
Moderator: Benj
- Benj
- Matrix Staff
- Posts: 15312
- Joined: Mon Oct 16, 2006 10:48 am
- Location: Matrix TS Ltd
- Has thanked: 4803 times
- Been thanked: 4314 times
- Contact:
Re: BTEC Course - Exercise 9 Program 1 Part 2 - Key
Hi G,
If I am reading this correctly you are asking how the component macros work to sample the keypad.
The keypad macros basically do a scan of the keypad pins by performing the following.
We set one of the column pins high and the rest are driven low. We then read the input values of the row pins checking for a logic high which would indicate a switch press on that column. We then repeat this for the rest of the columns.
If we get a logic high back then we use a look up table to translate the switch index ((column * numrows) + row) into the corresponding ASCII value.
If I am reading this correctly you are asking how the component macros work to sample the keypad.
The keypad macros basically do a scan of the keypad pins by performing the following.
We set one of the column pins high and the rest are driven low. We then read the input values of the row pins checking for a logic high which would indicate a switch press on that column. We then repeat this for the rest of the columns.
If we get a logic high back then we use a look up table to translate the switch index ((column * numrows) + row) into the corresponding ASCII value.
Regards Ben Rowland - MatrixTSL
Flowcode Product Page - Flowcode Help Wiki - Flowcode Examples - Flowcode Blog - Flowcode Course - My YouTube Channel
Flowcode Product Page - Flowcode Help Wiki - Flowcode Examples - Flowcode Blog - Flowcode Course - My YouTube Channel
- The G
- Posts: 17
- Joined: Tue Jan 09, 2018 12:41 pm
- Location: Suffolk
- Has thanked: 24 times
- Been thanked: 8 times
- Contact:
Re: BTEC Course - Exercise 9 Program 1 Part 2 - Key
Ah thanks, ok I think I understand the theory behind it from your explanation, so how would that be entered into the input box for example, if I want to only read the "5" button in order to assign it a different character, without the use of a macro. Essentially using the keypad just as a set of generic buttons.Benj wrote:Hi G,
If I am reading this correctly you are asking how the component macros work to sample the keypad.
The keypad macros basically do a scan of the keypad pins by performing the following.
We set one of the column pins high and the rest are driven low. We then read the input values of the row pins checking for a logic high which would indicate a switch press on that column. We then repeat this for the rest of the columns.
If we get a logic high back then we use a look up table to translate the switch index ((column * numrows) + row) into the corresponding ASCII value.
...
G
G
- Benj
- Matrix Staff
- Posts: 15312
- Joined: Mon Oct 16, 2006 10:48 am
- Location: Matrix TS Ltd
- Has thanked: 4803 times
- Been thanked: 4314 times
- Contact:
Re: BTEC Course - Exercise 9 Program 1 Part 2 - Keypad program
Hi G,
You can't read all the buttons directly without doing the scanning technique. So you can't simply use an input icon to read the state of a specific button. However you can pair the input with an output and this should work for polling a single button or column of buttons.
If you just wanted to scan button 5 as per your example then you would have to output a 1 to column 1 (port bit 1) and a 0 to columns 0 and 2 (port bits 0 and 2). You can then use an input icon to check state of row 1 (port bit 5).
output 0b00000010 with mask 0b00000111
input with mask 0b00100000
Hope this helps and makes sense.
You can't read all the buttons directly without doing the scanning technique. So you can't simply use an input icon to read the state of a specific button. However you can pair the input with an output and this should work for polling a single button or column of buttons.
If you just wanted to scan button 5 as per your example then you would have to output a 1 to column 1 (port bit 1) and a 0 to columns 0 and 2 (port bits 0 and 2). You can then use an input icon to check state of row 1 (port bit 5).
output 0b00000010 with mask 0b00000111
input with mask 0b00100000
Hope this helps and makes sense.
Regards Ben Rowland - MatrixTSL
Flowcode Product Page - Flowcode Help Wiki - Flowcode Examples - Flowcode Blog - Flowcode Course - My YouTube Channel
Flowcode Product Page - Flowcode Help Wiki - Flowcode Examples - Flowcode Blog - Flowcode Course - My YouTube Channel
- The G
- Posts: 17
- Joined: Tue Jan 09, 2018 12:41 pm
- Location: Suffolk
- Has thanked: 24 times
- Been thanked: 8 times
- Contact:
Re: BTEC Course - Exercise 9 Program 1 Part 2 - Keypad program
I've tried my best to solve this, but it is outside of my ability!
I don't know if the person who wrote the course guide is on the forum, but could you please provide an answer program for this task on page 26 - Exercise 9 as per the highlights line on the image attached. Thanks!
I don't know if the person who wrote the course guide is on the forum, but could you please provide an answer program for this task on page 26 - Exercise 9 as per the highlights line on the image attached. Thanks!
...
G
G
- Steve
- Matrix Staff
- Posts: 3427
- Joined: Tue Jan 03, 2006 3:59 pm
- Has thanked: 114 times
- Been thanked: 422 times
Re: BTEC Course - Exercise 9 Program 1 Part 2 - Keypad program
To solve this you will need to refer to the datasheet:
http://www.matrixtsl.com/resources/file ... 4-30-1.pdf
The switches are arranged in a 4x3 matrix - 4 rows and 3 columns. The basic procedure to detect the key pressed is as follows:
I hope this will go part of the way in helping.
Regards,
Steve.
http://www.matrixtsl.com/resources/file ... 4-30-1.pdf
The switches are arranged in a 4x3 matrix - 4 rows and 3 columns. The basic procedure to detect the key pressed is as follows:
- output '1' to column pin 1 and '0' to column pins 2 and 3
- read each row pin in turn
- if the input is '1', then you know the switch at that column and row intersection is pressed
- if no keys in that column are pressed, repeat the procedure for the other columns
I hope this will go part of the way in helping.
Regards,
Steve.
- The G
- Posts: 17
- Joined: Tue Jan 09, 2018 12:41 pm
- Location: Suffolk
- Has thanked: 24 times
- Been thanked: 8 times
- Contact:
Re: BTEC Course - Exercise 9 Program 1 Part 2 - Keypad program
Hi Steve,
Thanks, and yes I understand the theory completely.
I am finding this very frustrating as a first time teacher in this topic. It feels embarrassing at times actually.
Anyway, I have tried again and still cannot do this.
I have attached one of my 47 attempts (yes 47 I kid you not.)
Please assist
Thanks, and yes I understand the theory completely.
I am finding this very frustrating as a first time teacher in this topic. It feels embarrassing at times actually.
Anyway, I have tried again and still cannot do this.
I have attached one of my 47 attempts (yes 47 I kid you not.)
Please assist
...
G
G
- LeighM
- Matrix Staff
- Posts: 2178
- Joined: Tue Jan 17, 2012 10:07 am
- Has thanked: 481 times
- Been thanked: 699 times
Re: BTEC Course - Exercise 9 Program 1 Part 2 - Keypad program
Hi,
The row read needs to read different pins to the column write.
So I've changed the mask in the read icon.
Hope that helps
The row read needs to read different pins to the column write.
So I've changed the mask in the read icon.
Hope that helps
- Attachments
-
- Keypad Signal 33a.fcfx
- (9.19 KiB) Downloaded 414 times
-
- Matrix Staff
- Posts: 9521
- Joined: Sat May 05, 2007 2:27 pm
- Location: Northamptonshire, UK
- Has thanked: 2585 times
- Been thanked: 3815 times
Re: BTEC Course - Exercise 9 Program 1 Part 2 - Keypad program
Hi, I have created a routine which should work on hardware, well works perfect with Proteus Simulation:
There maybe other better ways, but it's just what I thought of at the time.
Martin
Edit: Confirmed working on hardware.
See if you can understand with whats going on just single stepping into code (F8) then watching the variable values change.There maybe other better ways, but it's just what I thought of at the time.
Martin
Edit: Confirmed working on hardware.
- Attachments
-
- Keypad Signal 33b.fcfx
- (22.5 KiB) Downloaded 422 times
Last edited by medelec35 on Mon Feb 05, 2018 8:42 am, edited 1 time in total.
Reason: Added an additional comment.
Reason: Added an additional comment.
Martin