Skip to content

Commit

Permalink
Onekey keymap: quine (#10732)
Browse files Browse the repository at this point in the history
  • Loading branch information
ridingqwerty authored Feb 28, 2021
1 parent ec06ffe commit 6b1170c
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 0 deletions.
60 changes: 60 additions & 0 deletions keyboards/handwired/onekey/keymaps/quine/keymap.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
#include <handwired/onekey/onekey.h>
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { LAYOUT_ortho_1x1(KC_A) };
const char *buf[30] = {
"#include <handwired/onekey/onekey.h>",
"const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { LAYOUT_ortho_1x1(KC_A) };",
"const char *buf[30] = {",
"",
"};",
"bool process_record_user(uint16_t keycode, keyrecord_t *record) {",
" switch(keycode) {",
" case KC_A:",
" if (record->event.pressed) {",
" for (int i = 0; i < 3; i++) {",
" send_string(buf[i]);",
" tap_code(KC_ENT);",
" }",
" for (int i = 0; i < 30; i++) {",
" send_string(buf[3]);",
" tap_code16(S(KC_QUOT));",
" send_string(buf[i]);",
" tap_code16(S(KC_QUOT));",
" tap_code(KC_COMM);",
" tap_code(KC_ENT);",
" }",
" for (int i = 4; i < 30; i++) {",
" send_string(buf[i]);",
" tap_code(KC_ENT);",
" }",
" }",
" return false;",
" }",
" return true;",
"};",
};
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
switch(keycode) {
case KC_A:
if (record->event.pressed) {
for (int i = 0; i < 3; i++) {
send_string(buf[i]);
tap_code(KC_ENT);
}
for (int i = 0; i < 30; i++) {
send_string(buf[3]);
tap_code16(S(KC_QUOT));
send_string(buf[i]);
tap_code16(S(KC_QUOT));
tap_code(KC_COMM);
tap_code(KC_ENT);
}
for (int i = 4; i < 30; i++) {
send_string(buf[i]);
tap_code(KC_ENT);
}
}
return false;
}
return true;
};

1 change: 1 addition & 0 deletions keyboards/handwired/onekey/keymaps/quine/rules.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
BOOTLOADER=atmel-dfu

0 comments on commit 6b1170c

Please sign in to comment.