This is a super simple and easy to build Hotkey Keypad using an Arduino Micro.
It's:
- Easy to build with just a few components.
- 4 customizable buttons (add more if needed).
Unique keys exclusive to this circuit, eliminating accidental triggers during regular keyboard use.
Why use it?In my opinion, the main reason for using this instead of normal hotkeys is that it doesn't interfere with anything else on your keyboard.
Look at the code here:
const byte BUTTON1KEY = KEY_F13;
const byte BUTTON2KEY = KEY_F14;
const byte BUTTON3KEY = KEY_F15;
const byte BUTTON4KEY = KEY_F16;
You might be asking yourself: "What are those keys? They aren't on my keyboard!"
Well, you'd be absolutely right! But there's a catch.
See, your computer can actually register keys F13-F24, despite them not being normally accessible.
This means that the keys in this circuit are completely unique to it, since it has it's own "unique" keys.
This means there's no chance of them accidently triggering while attempting to do other things on your keyboard. (Ex: accidentally muting yourself while typing)
Tell me how to build it!Ok.
It's very simple really.
- Stick buttons into breadboard
- Connect a cable on the left to the corresponding pin (for me its 1-4, left to right)
- Connect a cable on the left to Ground
Launch the code onto the board, and you're good to go!
Here's some suggestions for uses:
- Screen Recording Start/Stop
- Mute Button
- You can use a macro software to convert these keys into full macros.
Happy using! Code is below.
Comments
Please log in or sign up to comment.