Elinize sağlık. Eğitici ve faydalı bir video olmuş. Keyifle izledim.
@robojax4 жыл бұрын
Teşekkür ederim. Güvende olabilirsin.
@webslinger20114 жыл бұрын
Opens up a lot of possibilities. Thanks!
@robojax4 жыл бұрын
yes indeed. I spend almost two days to write this code.
@SunilJeurkar Жыл бұрын
Worked for me , but had to change pins as below byte rowPins[ROWS] = {10,9,8,7,6}; //connect to the row pinouts of the kpd byte colPins[COLS] = {2,3,4,5}; //connect to the column pinouts of the kpd
@robojax Жыл бұрын
Thanks for sharing
@Delorean29 Жыл бұрын
So 20 push buttons brilliant print only they are enough with 2 threads in total?
@OcenaSoft4 жыл бұрын
Amazing Video, thanks again for your time and expert advice!
@robojax4 жыл бұрын
You are welcome. It is my pleasure.
@seafax4 жыл бұрын
That's a nice one, thanks. :-)
@robojax4 жыл бұрын
You are welcome.
@Delorean29 Жыл бұрын
Can I use DF player to this & keypad 5 X 4 to 2717 - I2C multiplexer, Adafruit & activate 20 sounds??
@robojax Жыл бұрын
The whole pint was to be able to get which key is pressed. Now you can do whatever you want. Process the key pressed and take action.
@robojax Жыл бұрын
You can if you know how to use it. Using I2C you can control 128 devices.
@604smit4 жыл бұрын
nice video Robojax ,good explanation! where to find (your) library keypad?
@robojax4 жыл бұрын
Thank you very much Leo. the library link was missing and I just fixed it. I appreciate it.
@jeffvenqueleir20364 жыл бұрын
nice video like always
@robojax4 жыл бұрын
thanks.
@arvindh13 Жыл бұрын
Will it work if we press two or more buttons at same time? Do you suggest any modifications?
@robojax Жыл бұрын
No. It won’t
@dienau63138 ай бұрын
there is a problem sir, I use arduino nano instead of uno, but I still connect the wires into nano as same as uno( 2 -> 10). However, after uploading the code, I opened the serial monitor and it just showed: Robojax 5x4 keypad Key: LEFT and didnt show anything else although I pushed other buttons. may you help me please?
@robojax8 ай бұрын
Hi, it should work with any board. check ht ewiring.
@bigcatdairy2 жыл бұрын
is there any way to do the samething in simulink?
@robojax2 жыл бұрын
of course there is way but you gotta define shape or buttons, take action, read and do something. But you cant' transfer this code to Simulink.
@bigcatdairy2 жыл бұрын
@@robojax yes, really looking forward to see the matrx keyboard block in simulink
@maxlindstrom54354 жыл бұрын
I use to connect with I2C PCF8574 to save some I/O on the Arduino. Will it work also with this Keypad (5X4) ?
@robojax4 жыл бұрын
it should work with any input that Arduino reads. yes.
@lucianoamorim517510 ай бұрын
does not compile to esp32
@rakeshgupta-nh2hu3 жыл бұрын
How to control with matrix keypad LCD display, like press 1 -came - Kerala press 2 came Mumbai many more state name comes after press only number, need for business
@robojax3 жыл бұрын
you need write your own code or hire someone.
@rakeshgupta-nh2hu3 жыл бұрын
@@robojax can u help
@usahapetani97434 жыл бұрын
👍
@robojax4 жыл бұрын
😊 Thanks.
@cpsanjana3 жыл бұрын
How to write 11 and 111?
@robojax3 жыл бұрын
create two variables called char code[3]='1','1','1'; and char readCode[3]; then when every allow use to enter 3 time something. every time save the entered value into readCode array. after 3 times compare each elements of readCode with code and if they all match, do something like turning ON relay or something else. good luck.