#No Key Inputs Registering
1 messages · Page 1 of 1 (latest)
Those pin numbers look suspicious. You should use the &pro_micro # pins described here https://zmk.dev/docs/development/hardware-integration/new-shield#kscan
Above, and test with left (central) half connected to USB first and see if it works
From what I am reading, if I switch to that, i need to change the pin numbers to match the pin numbers on the promicro schematic. So, instead of labeling the pin numbers with the "&gpio0 #" I would use "&pro_micro #" and make the pin #s 19, 18, 15 for the rows and 14, 16, 10 for the columns? Where as on the physical board, they would be 19, 2O, 21 for the rows and 22, 23, 24 for the column? Am I interpreting that correctly?
What numbers are the 19-24 on the physical board? I can't think of a board that would have those on the silk
If you have a schematic, that would be easiest
This was the build error on the &pro_micro change if that helps
https://github.com/tiltedapp/mini18/actions/runs/11308134429/job/31450648867#step:11:49
The nicenano V2, it has this schematic, which is what i followed for pin numbers. I think I may be overthinking it. Basically, follow this schematic.
I mean the schematic for your keyboard/pcb
nothing is labeled "23" anywhere; I'm just not sure where that number is coming from
but if physically, what you've got wires plugged into lines up with what you've stated here: #1294709597973774447 message
then yeah, change the pin numbers to what you've described
You are correct, that and the labeling on my Kicad were in conflict. I swear, i've made more little mistakes on this project.
that's where i was getting the 23 and all that, my own previous mistake. Let me go back correct this. Sorry for the confusion. You must be like, what in the world is this guy talking about. (it's my first build)
the other thing is you probably want your column pins GPIO_ACTIVE_HIGH (example: https://github.com/zmkfirmware/zmk/blob/a72327bdff8517fd8d1037a8a918c3d50e45f702/app/boards/shields/bat43/bat43.overlay)
Will do, thank you