DIY Programmable 6-Key Keyboard (DigiSpark)
by tharindurc in Circuits > Computers
59594 Views, 157 Favorites, 0 Comments
DIY Programmable 6-Key Keyboard (DigiSpark)
In this Instructables i will use a DigiSpark with a CD4021 Shift Register and read 6 mechanical switches.
Depending on the switch pressed, the DigiSpark will send some key strokes back to the PC. Making a sort of a Macro keypad, where we can assign each tactile switches to send key stroke.
Key Features :
• Programmable keys
• Shortcut keys With one press of a button.
• Volume control keys (for windows)
Parts List
Tools
- Soldering iron
- Breadboard
- wires
- jumper wires
- Prototyping board
- Wire strippers /cutters
- USB cable ( depends on the type of the digispark model)
- Multimeter
Skills required:
- Basic soldering skills
- Basic programming skills
Digispark (Software Config)
The Digispark is an Attiny85 based microcontroller development board similar to the Arduino line, only cheaper, smaller, and a bit less powerful. IT use the familiar Arduino IDE the Digispark is a great way to jump into electronics, or perfect for when an Arduino is too big or too much.
Specification:
- Support for the Arduino IDE 1.0+ (OSX/Win/Linux)
- Power via USB or External Source - 5v or 7-35v (automatic selection)
- On-board 500ma 5V RegulatorBuilt-in USB (and serial debugging)
- 6 I/O Pins (2 are used for USB only if your program actively communicates over USB, otherwise you can use all 6 even if you are programming via USB)
- 8k Flash Memory
Installing the Digispark Drivers
Make sure to use Arduino IDE version 1.6.7 otherwise uploading error will occur.
Watch this video to learn how to install Digispark drivers (That is created by Brainy Bits)
the Best Tutorial that i found.
https://brainy-bits.com/ check their site for more information
And Check this link to learn how to connect and program the Digispark using the Arduino IDE
https://digistump.com/wiki/digispark/tutorials/con...
Make sure to use Arduino IDE version 1.6.7
Because i got avr errors when uploading the code.
Connections
Pins Connections (digispark to shift-register)
• Digispark GND -------------- CD4021 GND/VSS
• Digispark 5V/VCC ---------- CD4021 VCC/VDD
• Digispark (P2 , D2) --- CD4021 LOAD / (pin 09 )
• Digispark (P1 , D1) --- CD4021 CLOCK / (pin 10)
• Digispark (P0 , D0) -- CD4021 SER OUT / Q8 / (pin 03)
Tactile Buttons (8 switches)
One leg of the Tactile Switches/ mechanical switch is connected to the 5V line.
The other leg of the Tactile Switches/mechanical switches are connected to pin 1-2-3-4-5-6-7 of the CD4021.
Pins 1-2-3-4-5-6-7 also have some 10K resistors connected to ground for switch pulldowns.
Look At the circuit layout for further clarifications.
Soldering
The parts were soldered on piece of perfboard that will fit in my enclosure .Just follow the circuit diagram in the above step.
Enclosure
The plywood parts were laser cut and I used wood glue to glue the parts to form the enclosure.
The Test Code
Check step 4 to learn how to install the libraries.
Before verifying the code , change the board to Digispark default .this will the ensure that the Digikeyboard.h is present in Arduino IDE . otherwise the digispark libraries are not present in the IDE even though its installed properly.
Each button has its unique binary value depending on the CD4021 pin , therefore to find out which is which upload this test code to the digispark
open the notepad and press the buttons and check the output.
Downloads
Code ( EASY TO TEST WITH THIS LIBRARY)
Upload this code.
To have the DigiSpark act as a Keyboard, we will be using a library called “DigiKeyboard” created by DigiStump.
Check the PDF file to find out the Arduino key word for each keyboard key.
To send a key stroke this command is used.
DigiKeyboard.sendKeyStroke();
To print something like "hello" this command is used.
DigiKeyboard.print ("Hello");
To put a delay this command is used:
DigiKeyboard.delay();
To press two keys at once :
separate the two key commands with a comma
eg:
DigiKeyboard.sendKeyStroke(KEY_C , MOD_CONTROL_LEFT);//copy shortcut (ctrl +v).
DigiKeyboard.sendKeyStroke(KEY_L , MOD_GUI_LEFT);//windows lock shortcut (windows logo key + L)
- On the keyboard the key that is pressed second should come before the comma. for example in the copy shorcut the "C" key should be before "control" key. But on the keyboard it should be "ctrl" key then the "c" key.
To press three keys at once:
separate two keys with a comma and the third command with a
DigiKeyboard.sendKeyStroke(KEY_ENTER , MOD_CONTROL_LEFT | MOD_SHIFT LEFT);
(Ctrl + Shift + Enter)
- Always the the last key that should be pressed must come before the comma. In the above case "ENTER" must come before the comma.
To only press the windows key:
DigiKeyboard.sendKeyStroke(0, MOD_GUI_LEFT );
To execute a command with a single press:
To open "CMD" in administrator mode , assign a key to this code and change the binary value .
if (RegisterValue == B10)
DigiKeyboard.sendKeyStroke(0,MOD_GUI_LEFT ); // press the windows key
DigiKeyboard.delay(1000); // wait a second
DigiKeyboard.print("cmd");
DigiKeyboard.delay(1000); // wait a second
DigiKeyboard.sendKeyStroke(KEY_ENTER,MOD_CONTROL_LEFT | MOD_SHIFT_LEFT ); // Ctrl+shift+enter
DigiKeyboard.delay(1000); // wait a second
DigiKeyboard.sendKeyStroke(KEY_ARROW_LEFT );
DigiKeyboard.sendKeyStroke(KEY_ENTER );
Useful Windows 10 shortcut keys
After uploading is done , remove the USB cable and plug it back again.
If you receive and error saying the USB is not recognized try unplugging and plugging back it again and while its initializing press any key repeatedly until it works.
Code ( With Different Library) #USE THIS #
Download and install this (Adafruit-Trinket-USB) library to your Arduino IDE.
upload the code and change according to your needs.
when using this code no need to press a key when plugin in the cable.
Example code: This replicate the exit action with a button.
// EXIT APPLICATION(Alt + F4)
TrinketHidCombo.pressKey(KEYCODE_MOD_LEFT_ALT, KEYCODE_F4);
TrinketHidCombo.pressKey(0, 0); // releasing keyboard.
Downloads
Volume Controls (optional)
To use Volume Control
Download and install this library (Adafruit-Trinket-USB) in your Arduino IDE.
upload this code and change the register value to match the button.
TrinketHidCombo.pressMultimediaKey(MMKEY_MUTE); // mute
TrinketHidCombo.pressMultimediaKey(MMKEY_VOL_UP); // volume up
TrinketHidCombo.pressMultimediaKey(MMKEY_VOL_DOWN); // volume down
Downloads
Final Thoughts
Thanks for reading! I'd love to hear your thoughts.