summaryrefslogtreecommitdiffstats
path: root/keyboards/four_banger/keymaps
diff options
context:
space:
mode:
authorJack Humbert <jack.humb@gmail.com>2017-08-21 22:38:43 +0200
committerJack Humbert <jack.humb@gmail.com>2017-08-21 22:51:16 +0200
commit1ce3971c90955ab354b1f77275a57ce51e447f86 (patch)
treea2930bf0902cfbb11510dd59652a0dd3155b3733 /keyboards/four_banger/keymaps
parent48e79cbe29d301a3876527f6a59f62974639e160 (diff)
downloadqmk_firmware-1ce3971c90955ab354b1f77275a57ce51e447f86.tar.gz
qmk_firmware-1ce3971c90955ab354b1f77275a57ce51e447f86.tar.xz
adds sweet16 and four banger keyboards
Diffstat (limited to 'keyboards/four_banger/keymaps')
-rw-r--r--keyboards/four_banger/keymaps/default/keymap.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/keyboards/four_banger/keymaps/default/keymap.c b/keyboards/four_banger/keymaps/default/keymap.c
new file mode 100644
index 000000000..245155381
--- /dev/null
+++ b/keyboards/four_banger/keymaps/default/keymap.c
@@ -0,0 +1,24 @@
+#include "four_banger.h"
+
+enum custom_keycodes {
+ UP_URL = SAFE_RANGE
+};
+
+const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
+ LAYOUT_ortho_2x2(
+ KC_1, KC_U,
+ KC_P, UP_URL
+ ),
+};
+
+bool process_record_user(uint16_t keycode, keyrecord_t *record) {
+ switch (keycode) {
+ case UP_URL:
+ if (record->event.pressed) {
+ SEND_STRING("http://1upkeyboads.com");
+ }
+ return false;
+ break;
+ }
+ return true;
+} \ No newline at end of file