Keyboard: Make a 1upkeyboards directory for visibility (#3759)

This commit is contained in:
MechMerlin
2018-08-26 09:30:12 -07:00
committed by Drashna Jaelre
parent eb19fb5b57
commit 1ee545014a
30 changed files with 5 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
#include "sweet16.h"
enum custom_keycodes {
UP_URL = SAFE_RANGE
};
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
LAYOUT_ortho_4x4(
KC_7, KC_8, KC_9, KC_ASTR,
KC_4, KC_5, KC_6, KC_SLSH,
KC_1, KC_2, KC_3, KC_MINS,
KC_0, KC_ENT, KC_DOT, KC_EQL
)
};
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;
}
void led_set_user(uint8_t usb_led) {
/* Map RXLED to USB_LED_NUM_LOCK */
if (usb_led & (1 << USB_LED_NUM_LOCK)) {
DDRB |= (1 << 0); PORTB &= ~(1 << 0);
} else {
DDRB &= ~(1 << 0); PORTB &= ~(1 << 0);
}
/* Map TXLED to USB_LED_CAPS_LOCK */
if (usb_led & (1 << USB_LED_CAPS_LOCK)) {
DDRD |= (1 << 5); PORTD &= ~(1 << 5);
} else {
DDRD &= ~(1 << 5); PORTD &= ~(1 << 5);
}
}

View File

@@ -0,0 +1,38 @@
#include "sweet16.h"
enum layers {
num,
extra,
mouse
};
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
[num] = LAYOUT_numpad_4x4(
KC_P7, KC_P8, KC_P9, LT(extra, KC_PPLS),
KC_P4, KC_P5, KC_P6,
KC_P1, KC_P2, KC_P3, KC_PENT,
LT(mouse, KC_P0), KC_DOT
),
[extra] = LAYOUT_numpad_4x4(
KC_PSLS, KC_PAST, KC_PMNS, KC_TRNS,
KC_BSPC, KC_EXECUTE, KC_DEL,
KC_LPRN, KC_RPRN, KC_PEQL, KC_PENT,
KC_TAB, KC_NLCK
),
[mouse] = LAYOUT_numpad_4x4(
KC_WH_D, KC_MS_U, KC_WH_U, LT(extra, KC_PPLS),
KC_MS_L, KC_MS_D, KC_MS_R,
KC_BTN1, KC_BTN2, KC_BTN3, KC_PENT,
KC_TRNS, KC_DOT
)
};

View File

@@ -0,0 +1,3 @@
# Dale's keymap for the Sweet16
I wanted to reuse a standard numpad keyset and have the full functionality of an larger numpad with a nod to Excel functionality.