You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
858 B
40 lines
858 B
6 years ago
|
#include QMK_KEYBOARD_H
|
||
|
|
||
|
enum custom_keycodes {
|
||
|
UP_URL = SAFE_RANGE
|
||
|
};
|
||
|
|
||
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||
|
LAYOUT_ortho_4x4(
|
||
|
KC_0, KC_1, KC_2, KC_3,
|
||
|
KC_4, KC_5, KC_6, KC_7,
|
||
|
KC_8, KC_9, KC_A, KC_B,
|
||
|
KC_C, RESET, KC_E, BL_STEP
|
||
|
)
|
||
|
};
|
||
|
|
||
|
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
||
|
switch (keycode) {
|
||
|
case UP_URL:
|
||
|
if (record->event.pressed) {
|
||
|
SEND_STRING("http://1upkeyboards.com");
|
||
|
}
|
||
|
return false;
|
||
|
break;
|
||
|
}
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
#ifdef ENCODER_ENABLE
|
||
|
#include "encoder.h"
|
||
|
void encoder_update_user(int8_t index, bool clockwise) {
|
||
|
if (index == 0) { /* First encoder */
|
||
|
if (clockwise) {
|
||
|
tap_code(KC_VOLU);
|
||
|
} else {
|
||
|
tap_code(KC_VOLD);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
#endif
|