Author Topic: Maximum keys allowed for Pro Micro?  (Read 5441 times)

0 Members and 1 Guest are viewing this topic.

Offline zer09

  • Thread Starter
  • Posts: 9
Maximum keys allowed for Pro Micro?
« on: Sat, 26 August 2017, 06:11:00 »
Hello I am existed, I will try to make my first custom keyboard  :p. and I am sourcing for parts now.

I just want to ask if the Pro Microhttps://www.aliexpress.com/item/ATmega32U4-5V-16MHz-Module-New-Pro-Micro-for-arduino-with-2-row-pin-header-For-Leonardo/32708975582.html can handle 5 x 10 matrix? and also if it is possible to add some LED indicator? and can i use QMK for it?

That a quite a lot of question, but I will appreciate for any help will come.

Thank you.

Offline tris0908

  • Posts: 9
Re: Maximum keys allowed for Pro Micro?
« Reply #1 on: Sat, 26 August 2017, 06:16:51 »
The pro micro has 18 usable pins. So it could handle the 5x10 matrix you would want since it will only use 15 pins. As for the LED indicator, i have no prior experience adding one. Try searching the forums for info on adding LED indicators. QMK will work fine with the pro micro.

Sent from my SM-G935F using Tapatalk


Offline TalkingTree

  • Posts: 2452
  • Location: Italy (142)
    • My projects
Re: Maximum keys allowed for Pro Micro?
« Reply #2 on: Sat, 26 August 2017, 06:46:29 »
and also if it is possible to add some LED indicator?
LED indicators usually require a dedicated pin.

and can i use QMK for it?
Being the Pro Micro an Atmel ATMega32u4 based board, you surely can use QMK.
My opensource projects: GH80-3000, TOAD, XMMX. Classified: stuff

Offline Findecanor

  • Posts: 5039
  • Location: Koriko
Re: Maximum keys allowed for Pro Micro?
« Reply #3 on: Sat, 26 August 2017, 07:36:14 »
The LEDs are usually put on the PWM-capable pins on port B (PB5, PB6, PB7). PB7 is not available on the Pro Micro. You should also connect each LEDs in series with a resistor.

BTW. Arduino has a werd pin-numbering that does not correspond to the actual port and bit. Do check Deskthority Wiki page on Arduino Pro Micro for a chart. There is some other useful info there as well.
« Last Edit: Sat, 26 August 2017, 07:45:57 by Findecanor »
🍉

Offline zer09

  • Thread Starter
  • Posts: 9
Re: Maximum keys allowed for Pro Micro?
« Reply #4 on: Sat, 26 August 2017, 20:05:34 »
Thank you so much for the replies.