Hi all,
I usually just lurk and search and get all my answers so never post..but im going crazy here.
Finally received 3 of these KTRL Arcade Mini that i ordered from DeamonBite fully assembled for me. One for mt Mister and 2 for another project.
Anyways i installed it in my wood housing and connected my Sanwa stick and assorted buttons. So right out of the box when i "define joystick" from the MiSter menu it lets me start off pretty well with "DPAD" setup and A,B,X,Y,L,R pretty easy. Once i get past that to start select later button configs it acts like im triple pushing buttons or something. I have a ZeroDelay board in this same setup before and had no probs but figured WTH get a Daemonbite.
I tried moving the button to different plugs on the board maybe thinking it would be a back button port or even a bad button....same issue happened.
The board has some "Config" button plug that you are i guess able to plug in another button and use it to set different modes. When i tried that and followed the instructions from DaemonBite site the button didnt do anything. Im thinking this is stuck on a "Keyboard" mode and not the Mode1 that is Joystick.
I did go on the MickGyver/DaemonBite-Arcade-Encoder Github to try uploading its .INO with Arduino IDE but during the verify i get some weird error and its out of my league. I will probably post there with those details if no one here has had good success with the DeamonBite.
I have read good things about it but could not find anything on google/YT for guides to get it properly set.
I have about 4-5 other devices i have configured in MiSTer for various cores that work no prob...so just not sure here.
Sorry or the long post!
Any "DeamonBite KTRL Arcade Mini" users that can help?
-
- Posts: 2
- Joined: Sun May 24, 2020 8:26 pm
Re: Any "DeamonBite KTRL Arcade Mini" users that can help?
Hi,
By default, deboucing is not activated. Multiple pushing buttons can be read by the arduino the time you press the button. You can try to change DEBOUNCE value in the .ino file.
I have no errors with the compilation. Do you select the ''Arduino Micro'' board and the good Serial Port in the Tools menu ?
Regards
By default, deboucing is not activated. Multiple pushing buttons can be read by the arduino the time you press the button. You can try to change DEBOUNCE value in the .ino file.
Code: Select all
#define DEBOUNCE 1 // 1=Diddly-squat-Delay-Debouncing™ activated, 0=Debounce deactivated
Regards
-
- Posts: 2
- Joined: Sun May 24, 2020 8:26 pm
Re: Any "DeamonBite KTRL Arcade Mini" users that can help?
ok i like i like!
I did a quick test and compile and did not scream errors.
Im getting my kids to bed soon and gonna run with this asap!
Thanks!!
I did a quick test and compile and did not scream errors.
Im getting my kids to bed soon and gonna run with this asap!
Thanks!!
- bootsector
- Posts: 170
- Joined: Sun May 24, 2020 6:58 pm
- Has thanked: 4 times
- Been thanked: 30 times
Re: Any "DeamonBite KTRL Arcade Mini" users that can help?
Wasn't debounce logic added to MiSTer's menu system some time ago? That should be enough. Doesn't that debounce logic apply to the general mapping screen as well?
-
- Posts: 20
- Joined: Sun May 24, 2020 10:19 pm
- Has thanked: 4 times
- Been thanked: 1 time
Re: Any "DeamonBite KTRL Arcade Mini" users that can help?
I recently replaced my Mini-PAC with the Arduino Micro board. I was having trouble mapping menu keys due to sensitivity - multiple key presses. I did the debounce change above and it fixed my issue. Thank you!