1 2 3 A
4 5 6 B
7 8 9 C
* 0 # D
but when I press the keys for example 1,2,3,A
My readout is 1,2,3,4
Would I have to do a lookup or re-assignment ?
I am not familiar with mister e's keypad program, but if you get the sequence from 1 to 16, then use an array to code out what you need.
Code:
Kp_Array var byte [17]
Kp_Array[1] = "1"
Kp_Array[1] = "2"
.
.
.
Kp_Array[15] = "#"
Kp_Array[16] = "D"
2. How do i capture a number ending with a hash for example
If Kp_Array[keypress] = "#" then ........
Al.
All progress began with an idea
Bookmarks