1
0
Fork 0

Onekey cleanup (#13786)

This commit is contained in:
Ryan 2021-07-31 03:10:05 +10:00 committed by GitHub
parent cfca970718
commit d1db008745
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
51 changed files with 121 additions and 118 deletions

View file

@ -0,0 +1,20 @@
#include QMK_KEYBOARD_H
enum custom_keycodes {
KC_HELLO = SAFE_RANGE,
};
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
LAYOUT_ortho_1x1(KC_HELLO)
};
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
switch (keycode) {
case KC_HELLO:
if (record->event.pressed) {
printf("Hello world!\n");
}
return false;
}
return true;
}