Browse Source

[Keyboard] Add Hillside 46 (#17968)

* 46: Copy from 52 and file rename

* 46: File internals refer to 46, not 52

* 46: Board remove row

* 46: Keymap: Lshift becomes ctrl, Rshift a symbol

- ESC and CAPs on upper thumbs
- AltGr and App on upper thumbs
- Page up/down on upper thumbs
- F11, F12 and mods for them on adjust

* 46: Readme update for json script, tweaks

* 46: Board fix LED count

* 46: Keymap: Arrows right, symmetric layer keys

* 46: Readme: Image link with and w/o outer pinkie

* 46: Keymap: link fixed image of nav layer

* 46: Keymap: fix reaching adj layer

Co-authored-by: mmccoyd <mmccoyd@cs.berkley.edu>
pull/18041/head
mmccoyd 1 year ago
committed by GitHub
parent
commit
aee738c61b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
16 changed files with 636 additions and 0 deletions
  1. +19
    -0
      keyboards/handwired/hillside/46/46.c
  2. +37
    -0
      keyboards/handwired/hillside/46/46.h
  3. +39
    -0
      keyboards/handwired/hillside/46/config.h
  4. +105
    -0
      keyboards/handwired/hillside/46/info.json
  5. +9
    -0
      keyboards/handwired/hillside/46/keymaps/default/config.h
  6. +88
    -0
      keyboards/handwired/hillside/46/keymaps/default/keymap.json
  7. +136
    -0
      keyboards/handwired/hillside/46/keymaps/default/readme.md
  8. +1
    -0
      keyboards/handwired/hillside/46/keymaps/default/rules.mk
  9. +9
    -0
      keyboards/handwired/hillside/46/keymaps/default_dot_c/config.h
  10. +64
    -0
      keyboards/handwired/hillside/46/keymaps/default_dot_c/keymap.c
  11. +25
    -0
      keyboards/handwired/hillside/46/keymaps/default_dot_c/readme.md
  12. +1
    -0
      keyboards/handwired/hillside/46/keymaps/default_dot_c/rules.mk
  13. +64
    -0
      keyboards/handwired/hillside/46/keymaps/via/keymap.c
  14. +2
    -0
      keyboards/handwired/hillside/46/keymaps/via/rules.mk
  15. +29
    -0
      keyboards/handwired/hillside/46/readme.md
  16. +8
    -0
      keyboards/handwired/hillside/46/rules.mk

+ 19
- 0
keyboards/handwired/hillside/46/46.c View File

@ -0,0 +1,19 @@
// Copyright 2022 Michael McCoyd (@mmccoyd)
// SPDX-License-Identifier: GPL-2.0-or-later
#include "46.h"
// Keymatrix spots to ignore, as one signals handedness and others have no key
const matrix_row_t matrix_mask[] = {
//c:543210 column id's
0b111111,
0b111111,
0b111111,
0b111110,
//c:543210
0b111111,
0b111111,
0b111111,
0b111110
};

+ 37
- 0
keyboards/handwired/hillside/46/46.h View File

@ -0,0 +1,37 @@
// Copyright 2022 Michael McCoyd (@mmccoyd)
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include "quantum.h"
/* This is a mapping so keymap files can be more readable to humans.
*
* The first section contains all of the arguments representing the physical
* layout of the board and position of the keys.
*
* The second converts those identifiers into a two-dimensional array which
* represents the switch matrix.
*
* The identifiers could be anything, but for human sanity have the folowing form
* <Left or Right><Physical or thumb row><Circuit column counting from outer pinky>
*/
// clang-format off
#define LAYOUT( \
L00, L01, L02, L03, L04, L05, R05, R04, R03, R02, R01, R00, \
L10, L11, L12, L13, L14, L15, R15, R14, R13, R12, R11, R10, \
L20, L21, L22, L23, L24, L25, LT5, RT5, R25, R24, R23, R22, R21, R20, \
LT1, LT2, LT3, LT4, RT4, RT3, RT2, RT1 \
) \
{ \
{ L00, L01, L02, L03, L04, L05 }, \
{ L10, L11, L12, L13, L14, L15 }, \
{ L20, L21, L22, L23, L24, L25 }, \
{ KC_NO, LT1, LT2, LT3, LT4, LT5 }, \
{ R00, R01, R02, R03, R04, R05 }, \
{ R10, R11, R12, R13, R14, R15 }, \
{ R20, R21, R22, R23, R24, R25 }, \
{ KC_NO, RT1, RT2, RT3, RT4, RT5 } \
}
// clang-format on

+ 39
- 0
keyboards/handwired/hillside/46/config.h View File

@ -0,0 +1,39 @@
// Copyright 2022 Michael McCoyd (@mmccoyd)
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include "config_common.h"
/* key matrix size */
// Rows are doubled-up
#define MATRIX_ROWS 8
#define MATRIX_COLS 6
/* Split */
#define SPLIT_HAND_MATRIX_GRID B5, F6
#define MATRIX_MASKED
/* Encoder */
#define ENCODERS_PAD_A { F5 }
#define ENCODERS_PAD_B { F4 }
#define ENCODERS_PAD_A_RIGHT { F4 }
#define ENCODERS_PAD_B_RIGHT { F5 }
#define RGBLIGHT_SLEEP
/* Haptic hardware */
// The Pimoroni is the likely hardware, for which these settings work
#define FB_ERM_LRA 1
#define FB_BRAKEFACTOR 3 /* 1x:0, 2x:1, 3x:2, 4x:3, 6:4, 8:5, 16:6, Disable:7 */
#define FB_LOOPGAIN 1 /* For Low:0, Medium:1, High:2, Very High:3 */
/* Please refer to your datasheet for optimal setting for your specific motor.*/
#define RATED_VOLTAGE 2
#define V_PEAK 2.8
#define V_RMS 2.0
#define F_LRA 205 /* resonance freq */
/* Haptic waveforms */
// Two mild waveforms
#define DRV_GREETING alert_750ms
#define DRV_MODE_DEFAULT sharp_tick3_60

+ 105
- 0
keyboards/handwired/hillside/46/info.json View File

@ -0,0 +1,105 @@
{
"manufacturer": "mmccoyd",
"maintainer": "mmccoyd",
"keyboard_name": "Hillside 46",
"url": "http://github.com/mmccoyd/hillside/",
"tags": ["split", "column stagger", "choc v1", "choc spaced" ],
"processor": "atmega32u4",
"matrix_pins": {
"rows": ["C6", "D7", "E6", "B5"],
"cols": ["F6", "F7", "B1", "B3", "B2", "B6"]
},
"diode_direction": "COL2ROW",
"usb": {
"vid": "0x4D4D",
"pid": "0x4846",
"device_version": "0.0.1"
},
"features": {
"encoder": true,
"extrakey": true,
"rgblight": true
},
"split": {
"soft_serial_pin": "D2"
},
"rgblight": {
"led_count": 4,
"pin": "D3",
"split": true,
"hue_steps": 8,
"saturation_steps": 8,
"brightness_steps": 8
},
"layouts": {
"LAYOUT": {
"layout": [
{"label": "`~", "x": 0.8, "y": 1.13},
{"label": "Q", "x": 1.8, "y": 0.93},
{"label": "W", "x": 2.9, "y": 0.31},
{"label": "E", "x": 4, "y": 0},
{"label": "R", "x": 5, "y": 0.28},
{"label": "T", "x": 6, "y": 0.42},
{"label": "Y", "x": 10.5, "y": 0.42},
{"label": "U", "x": 11.5, "y": 0.28},
{"label": "I", "x": 12.5, "y": 0},
{"label": "O", "x": 13.6, "y": 0.31},
{"label": "P", "x": 14.7, "y": 0.93},
{"label": "Backspace", "x": 15.7, "y": 1.13},
{"label": "Tab", "x": 0.9, "y": 2.13},
{"label": "A", "x": 1.9, "y": 1.93},
{"label": "S", "x": 2.95, "y": 1.31},
{"label": "D", "x": 4, "y": 1},
{"label": "F", "x": 5, "y": 1.28},
{"label": "G", "x": 6, "y": 1.42},
{"label": "H", "x": 10.5, "y": 1.42},
{"label": "J", "x": 11.5, "y": 1.28},
{"label": "K", "x": 12.5, "y": 1},
{"label": "L", "x": 13.55, "y": 1.31},
{"label": ";", "x": 14.6, "y": 1.93},
{"label": "Enter", "x": 15.6, "y": 2.13},
{"label": "Ctrl", "x": 1, "y": 3.13},
{"label": "Z", "x": 2, "y": 2.93},
{"label": "X", "x": 3, "y": 2.31},
{"label": "C", "x": 4, "y": 2},
{"label": "V", "x": 5, "y": 2.28},
{"label": "B", "x": 6, "y": 2.42},
{"label": "ESC", "x": 7, "y": 2.88},
{"label": "CAP", "x": 9.5, "y": 2.88},
{"label": "N", "x": 10.5, "y": 2.42},
{"label": "M", "x": 11.5, "y": 2.28},
{"label": ",", "x": 12.5, "y": 2},
{"label": ".", "x": 13.5, "y": 2.31},
{"label": "/", "x": 14.5, "y": 2.93},
{"label": "'", "x": 15.5, "y": 3.13},
{"label": "Gui", "x": 4.5, "y": 3.28},
{"label": "Alt", "x": 5.5, "y": 3.42},
{"label": "Shift", "x": 6.5, "y": 3.88},
{"label": "Nav", "x": 7.5, "y": 4.44},
{"label": "Sym", "x": 9, "y": 4.44},
{"label": "Space", "x": 10, "y": 3.88},
{"label": "Alt", "x": 11, "y": 3.42},
{"label": "Gui", "x": 12, "y": 3.28},
]
}
}
}

+ 9
- 0
keyboards/handwired/hillside/46/keymaps/default/config.h View File

@ -0,0 +1,9 @@
// Copyright 2022 Michael McCoyd (@mmccoyd)
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
// Some boards have issues detecting handedness using the vbus voltage.
// Such as Elite-C v3, but not v3.1 on. Also apparently some ProMicro boards.
// For those boands, use usb detection instead.
// #define SPLIT_USB_DETECT

+ 88
- 0
keyboards/handwired/hillside/46/keymaps/default/keymap.json View File

@ -0,0 +1,88 @@
{ "version": 1,
"notes": "",
"documentation": "\"This file is a QMK Configurator export. You can import this at <https://config.qmk.fm>. It can also be used directly with QMK's source code.\n\nTo setup your QMK environment check out the tutorial: <https://docs.qmk.fm/#/newbs>\n\nYou can convert this file to a keymap.c using this command: `qmk json2c {keymap}`\n\nYou can compile this keymap using this command: `qmk compile {keymap}`\"\n",
"keyboard": "handwired/hillside/46",
"keymap": "default",
"layout": "LAYOUT",
"layers": [
["KC_GRV" , "KC_Q" , "KC_W" , "KC_E" , "KC_R" , "KC_T",
"KC_Y" , "KC_U" , "KC_I" , "KC_O" , "KC_P" , "KC_BSPC",
"KC_TAB" , "KC_A" , "KC_S" , "KC_D" , "KC_F" , "KC_G",
"KC_H" , "KC_J" , "KC_K" , "KC_L" , "KC_SCLN", "KC_ENT",
"KC_LCTL" , "KC_Z" , "KC_X" , "KC_C" , "KC_V" , "KC_B" , "KC_ESC",
"ANY(CAPSWRD)", "KC_N" , "KC_M" , "KC_COMM", "KC_DOT" , "KC_SLSH" , "KC_QUOT",
"KC_LGUI" , "KC_LALT" , "OSM(MOD_LSFT)", "MO(3)",
"MO(4)" , "KC_SPC" , "KC_LALT" , "KC_RGUI"
],
["KC_GRV" , "KC_QUOT" , "KC_COMM" , "KC_DOT" , "KC_P" , "KC_Y",
"KC_F" , "KC_G" , "KC_C" , "KC_R" , "KC_L" , "KC_BSPC",
"KC_TAB" , "KC_A" , "KC_O" , "KC_E" , "KC_U" , "KC_I",
"KC_D" , "KC_H" , "KC_T" , "KC_N" , "KC_S" , "KC_ENT",
"KC_LCTL" , "KC_SCLN" , "KC_Q" , "KC_J" , "KC_K" , "KC_X" , "KC_ESC",
"ANY(CAPSWRD)", "KC_B" , "KC_M" , "KC_W" , "KC_V" , "KC_Z" , "KC_SLSH",
"KC_LGUI" , "KC_LALT" , "OSM(MOD_LSFT)", "MO(3)",
"MO(4)" , "KC_SPC" , "KC_LALT" , "KC_RGUI"
],
["KC_GRV" , "KC_Q" , "KC_W" , "KC_F" , "KC_P" , "KC_B",
"KC_J" , "KC_L" , "KC_U" , "KC_Y" , "KC_SCLN", "KC_BSPC",
"KC_TAB" , "KC_A" , "KC_R" , "KC_S" , "KC_T" , "KC_G",
"KC_M" , "KC_N" , "KC_E" , "KC_I" , "KC_O" , "KC_ENT",
"KC_LCTL" , "KC_Z" , "KC_TRNS" , "KC_C" , "KC_D" , "KC_V" , "KC_ESC",
"ANY(CAPSWRD)", "KC_K" , "KC_H" , "KC_COMM", "KC_DOT" , "KC_SLSH" , "KC_QUOT",
"KC_LGUI" , "KC_LALT" , "OSM(MOD_LSFT)", "MO(3)",
"MO(4)" , "KC_SPC" , "KC_LALT" , "KC_RGUI"
],
["LCTL(KC_C)" , "KC_1" , "KC_2" , "KC_3" , "KC_4" , "KC_5",
"KC_6" , "KC_7" , "KC_8" , "KC_9" , "KC_0" , "KC_TRNS",
"LCTL(KC_X)" , "KC_LGUI" , "KC_LALT" , "KC_LCTL", "KC_LSFT", "LCTL(KC_V)",
"KC_PGUP" , "KC_LEFT" , "KC_UP" , "KC_DOWN", "KC_RGHT", "KC_PGDN",
"KC_TRNS" , "KC_F1" , "KC_F2" , "KC_F3" , "KC_F4" , "KC_F5" , "LCTL(KC_Z)",
"LCTL(KC_Y)" , "KC_F6" , "KC_F7" , "KC_F8" , "KC_F9" , "KC_F10" , "KC_RCTL",
"KC_TRNS" , "KC_TRNS" , "KC_TRNS" , "KC_TRNS",
"MO(5)" , "KC_TRNS" , "KC_TRNS" , "KC_TRNS"
],
["KC_INS" , "KC_EXLM" , "KC_AT" , "KC_HASH", "KC_DLR" , "KC_PERC",
"KC_CIRC" , "KC_AMPR" , "KC_ASTR" , "KC_LPRN", "KC_RPRN", "KC_DEL",
"KC_NO" , "KC_BSLS" , "KC_MINS" , "KC_EQL" , "KC_LBRC", "KC_RBRC",
"KC_HOME" , "KC_RSFT" , "KC_RCTL" , "KC_LALT", "KC_RGUI", "KC_END",
"KC_TRNS" , "KC_PIPE" , "KC_UNDS" , "KC_PLUS", "KC_LCBR", "KC_RCBR" , "OSM(MOD_RALT)",
"KC_APP" , "KC_MUTE" , "KC_VOLD" , "KC_VOLU", "KC_MPLY", "KC_NO" , "KC_RCTL",
"KC_TRNS" , "KC_TRNS" , "KC_TRNS" , "MO(5)",
"KC_TRNS" , "KC_TRNS" , "KC_TRNS" , "KC_TRNS"
],
["KC_NO" , "DF(0)" , "DF(1)" , "DF(2)" , "AG_SWAP", "CG_SWAP",
"KC_NO" , "KC_F11" , "KC_F12" , "KC_PSCR", "KC_NO" , "EE_CLR",
"KC_NO" , "KC_NO" , "KC_BRID" , "KC_BRIU", "AG_NORM", "CG_NORM",
"RGB_MOD" , "RGB_VAI" , "RGB_HUI" , "RGB_SAI", "KC_NO" , "KC_NO",
"KC_NO" , "KC_LGUI" , "KC_LALT" , "KC_LCTL", "KC_LSFT", "KC_NO" , "KC_NO",
"RGB_TOG" , "RGB_RMOD", "RGB_VAD" , "RGB_HUD", "RGB_SAD", "KC_NO" , "QK_BOOT",
"KC_NO" , "KC_NO" , "KC_NO" , "KC_TRNS",
"KC_TRNS" , "KC_NO" , "KC_NO" , "KC_NO"
]
],
"author": "@mmccoyd"
}

+ 136
- 0
keyboards/handwired/hillside/46/keymaps/default/readme.md View File

@ -0,0 +1,136 @@
# Hillside 46 Default Keymap
For easier initial use, this keymap follows the layout of more standard keyboards where possible. It is a starting point for you to tweak over time to suit your preferences better. You can easily customize it with the [QMK configurator](https://config.qmk.fm/#/handwired/hillside/46/LAYOUT).
Some of its key features are:
- Numbers and symbols along the top row of their layers for familiarity.
- Comfortable modifier and function or symbol combinations on the non-base layers using modifiers on the home row of the symbol and number/function layers.
- A layer with both navigation and editing keys allows document editing without leaving the layer.
- QWERTY, Colemak-DH and Dvorak base layer options.
## Base Layer
![Base QWERTY layer](https://imgur.com/C2kxwOuh.png)
The base layer provides a very standard key layout with four differences:
- Numbers, functions and most symbols are accessed with number and symbol shift keys.
- Escape is on the upper left thumb.
- The left thumb has a shift key that affects the next key pressed. So to get 'A', press and release the thumb shift key, press 'a'. You can also hold the key down, and it will work like a standard shift key.
- Caps word toggles a mode that capitalizes all letters until something other than a letter, digit, dash, underscore, delete or backspace is typed. The mode also times out five seconds after the last key press.
- The Menu and AltGr keys are on a layer.
The default layout is QWERTY with alternatives of Dvorak and Colemak-DH, and the alt/option and win/command key locations are swappable for windows or mac.
<details>
<summary>Details of Dvorak and Colemak-DH</summary>
The Dvorak and Colemak-DH base layers have identical non-alpha and non-symbol keys as the QWERTY base layer.
![Base Dvorak layer](https://imgur.com/5gGk2rOh.png)
![Base Colemak layer](https://imgur.com/xExBB8eh.png)
</details>
## Navigation, Editing, Number and Function Layer
![Navigation layer](https://imgur.com/Obx6oRTh.png)
Holding down the Nav/Edit key accesses the navigation, editing, number and function layer:
- Numbers are along the top row, and function keys are on the bottom.
- The arrow keys on the right can be combined with the home row modifiers on the left to easily move around and select text, which can then be cut, copied and pasted.
## Symbol and Media Layer
![Symbol layer](https://imgur.com/mzcB2JFh.png)
Holding down the SYM key accesses the symbol layer:
- The symbols not present on the base layer are along the top row and left side, arranged similarly to a large keyboard.
- Duplicates of the modifier keys are along the right home keys. This positioning allows a very comfortable combination of any set of modifiers plus a key on the left side of the board.
- Forward delete is on the upper right, taking backspace's place.
- The Window OS application menu key is on the right upper thumb.
- The AltGr key affects the next key pressed so that it can combine with a key on any layer. It changes the meaning of the next key pressed after the AltGr key is pressed and released. For example, to do AltGr-h: press SYM, press and release AltGr, release SYM, press and release h.
## Adjust Layer
![Adjust layer](https://imgur.com/r3Ip7hxh.png)
Simultaneously holding down the Sym and Nav/Edit keys enables keys to adjust keyboard settings:
- The base layer can be set to QWERTY, Colemak-DH or Dvorak, although the keyboard reverts to QWERTY each time it is plugged in.
- Alt/option and GUI/command can be swapped for mac users or restored to the windows norm.
- The backlight LEDs can be enabled, disabled, and controlled.
- BOOT allows loading new firmware, such as for keymap changes.
## Make it Yours
If you are coming from a traditional keyboard,
with a large set of physical keys,
learning to use a column staggered (ergo) and layer-based keyboard,
which uses layers instead of finger reaches to access numbers, symbols and functions,
will be an adjustment for your muscle memory and your mental keyboard map.
This default layout tries to simplify that adjustment by keeping things in the expected spots when possible.
Yet this layout is only a decent compromise and is not optimal for each user.
The online configurator makes it easy to tweak this layout to your needs.
You can add additional layers or completely switch around what these do.
A good metaphor is to think of your keymap as a bonsai tree that you tweak slightly over time
in response to ideas of how it might serve you better.
Some changes you might consider making:
- If you are on a mac, switch the editing keys from ctrl-x to cmd-x.
- Put some of your most-used key combinations on the unused keys
on the symbol layer.
- Instead of holding down the thumb key to keep the symbol layer active,
you could use a one-shot layer key.
One-shot modifiers are likely less stress on your hands and may even be faster.
You would still be able to hold it down instead.
- Instead of holding down the key for the number layer,
you could make it a layer toggle.
Here are some other keymaps for inspiration and ideas:
- The [Ferris default](https://github.com/qmk/qmk_firmware/tree/master/keyboards/ferris/keymaps/default) uses more advanced features as it has far fewer keys to work with.
- The [Miryoku](https://github.com/manna-harbour/miryoku/tree/master/docs/reference) keymap ensures that all modifiers are comfortably available with each character key.
- The [Kyria default](https://github.com/qmk/qmk_firmware/tree/master/keyboards/splitkb/kyria/keymaps/default) has different keymap choices.
## Why no keymap.c
The online configurator provides a straightforward visual way
to work with a simple layout and uses a .json keymap format.
So this default ```keymap.json``` was created with the online configurator.
If you wish, you can edit the ```keymap.json``` directly in a text editor, compile it and flash it.
Or, you can use the graphical configurator to edit the keymap. To do that:
- Open the [QMK configurator](https://config.qmk.fm/#/handwired/hillside/46/LAYOUT)
- Using the green up arrow button, load the keymap from ```qmk_firmware/keyboards/handwired/hillside/46/keymaps/default/keymap.json```
- Make the changes you wish to the layout
- Save the keymap using the green down arrow button.
- Move the downloaded keymap back into your QMK repository
at the same location as above.
- Rename it back to keymap.json
- Compile and flash the firmware.
You can combine a .json based keymap with more advanced features
specified in .c files with a bit more complexity.
For example, see
[pierrec83's Kyria map](https://github.com/qmk/qmk_firmware/tree/master/keyboards/splitkb/kyria/keymaps/pierrec83).
### Pretty Printing
The QMK configurator's .json download has only one key per line,
so it is hard to visualize the keymap if editing manually.
If you want, the Hillside git repo has a pretty-printing script for the keymap.json file.
As with anything downloaded from the internet, you should take some steps to assure yourself that the script will not harm your computer nor steal your data. The script is short, so reading it should at least convince you it is rearranging and printing the keymap feed to it, not reading any banking data on your computer.
See the [Hillside wiki](https://github.com/mmccoyd/hillside/wiki) for the script.

+ 1
- 0
keyboards/handwired/hillside/46/keymaps/default/rules.mk View File

@ -0,0 +1 @@
CAPS_WORD_ENABLE = yes

+ 9
- 0
keyboards/handwired/hillside/46/keymaps/default_dot_c/config.h View File

@ -0,0 +1,9 @@
// Copyright 2022 Michael McCoyd (@mmccoyd)
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
// Some boards have issues detecting handedness using the vbus voltage.
// Such as Elite-C v3, but not v3.1 on. Also apparently some ProMicro boards.
// For those boands, use usb detection instead.
// #define SPLIT_USB_DETECT

+ 64
- 0
keyboards/handwired/hillside/46/keymaps/default_dot_c/keymap.c View File

@ -0,0 +1,64 @@
// Copyright 2022 Michael McCoyd (@mmccoyd)
// SPDX-License-Identifier: GPL-2.0-or-later
#include QMK_KEYBOARD_H
enum layers {
_QWERTY = 0,
_NAV,
_SYM,
_ADJUST,
};
#define xxxxxxx KC_NO
#define LY_NAV MO(_NAV)
#define LY_SYM MO(_SYM)
#define LY_ADJ MO(_ADJUST)
#define ALT_GR OSM(MOD_RALT)
#define OSM_SFT OSM(MOD_LSFT)
#define PLY_PAU KC_MEDIA_PLAY_PAUSE
#define UNDO LCTL(KC_Z)
#define CUT LCTL(KC_X)
#define COPY LCTL(KC_C)
#define PASTE LCTL(KC_V)
#define REDO LCTL(KC_Y)
// (For OS X, you'll want to change these editing keys to LGUI(KC_Z) etc.)
// clang-format off
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
[_QWERTY] = LAYOUT(
KC_GRV, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC,
KC_TAB, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_ENT,
KC_LCTL, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_ESC, CAPSWRD, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_QUOT,
KC_LGUI, KC_LALT, OSM_SFT, LY_NAV , LY_SYM , KC_SPC , KC_LALT, KC_RGUI
),
[_NAV] = LAYOUT(
COPY , KC_1 , KC_2 , KC_3 , KC_4 , KC_5 , KC_6 , KC_7 , KC_8 , KC_9 , KC_0 , _______,
CUT , KC_LGUI, KC_LALT, KC_LCTL, KC_LSFT, PASTE , KC_PGUP, KC_LEFT, KC_UP , KC_DOWN, KC_RGHT, KC_PGDN,
_______, KC_F1 , KC_F2 , KC_F3 , KC_F4 , KC_F5 , UNDO , REDO , KC_F6 , KC_F7 , KC_F8 , KC_F9 , KC_F10 , KC_RCTL,
_______, _______, _______, _______, LY_ADJ , _______, _______, _______
),
[_SYM] = LAYOUT(
KC_INS, KC_EXLM, KC_AT , KC_HASH, KC_DLR , KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_DEL,
xxxxxxx, KC_BSLS, KC_MINS, KC_EQL , KC_LBRC, KC_RBRC, KC_HOME, KC_RSFT, KC_RCTL, KC_LALT, KC_RGUI, KC_END,
_______, KC_PIPE, KC_UNDS, KC_PLUS, KC_LCBR, KC_RCBR, ALT_GR , KC_APP , KC_MUTE, KC_VOLD, KC_VOLU, KC_MPLY, xxxxxxx, KC_RCTL,
_______, _______, _______, LY_ADJ , _______, _______, _______, _______
),
[_ADJUST] = LAYOUT(
xxxxxxx, xxxxxxx, xxxxxxx, xxxxxxx, AG_SWAP, CG_SWAP, xxxxxxx, KC_F11 , KC_F12 , KC_PSCR, xxxxxxx, EE_CLR,
xxxxxxx, xxxxxxx, KC_BRID, KC_BRIU, AG_NORM, CG_NORM, RGB_MOD, RGB_VAI, RGB_HUI, RGB_SAI, xxxxxxx, xxxxxxx,
xxxxxxx, KC_LGUI, KC_LALT, KC_LCTL, KC_LSFT, xxxxxxx, xxxxxxx, RGB_TOG, RGB_RMOD, RGB_VAD, RGB_HUD, RGB_SAD, xxxxxxx, QK_BOOT,
xxxxxxx, xxxxxxx, xxxxxxx, _______, _______, xxxxxxx, xxxxxxx, xxxxxxx
),
};
// Template:
// [_INDEX] = LAYOUT(
// _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
// _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
// _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
// _______, _______, _______, _______, _______, _______, _______, _______
// ),

+ 25
- 0
keyboards/handwired/hillside/46/keymaps/default_dot_c/readme.md View File

@ -0,0 +1,25 @@
# Default Hillside 46 Layout (in .c format)
This layout is for those who prefer defining their layout in a keymap.c,
instead of graphically with a keymap.json.
It is the same as the [default keymap.json layout](https://github.com/qmk/qmk_firmware/blob/master/keyboards/handwired/hillside/46/keymaps/default),
except for having only a QWERTY base layer.
The make and flash commands are
```
make handwired/hillside/46:default_dot_c
make handwired/hillside/46:default_doc_c:flash
```
It also serves as a simple, clean layout
to verify that the configuration and switches work.
Use the [QMK Configurator Tester](https://config.qmk.fm/#/test)
to see that the switches produce output.
All the keys should register on the layout tester
except for the caps word and the two layer keys.
The LEDs should glow a nice red.
If they do not, you may need to clear the persistent EEPROM settings with the
EE_CLR key on the adjust layer,
or enable them with the RGB_TOG key.

+ 1
- 0
keyboards/handwired/hillside/46/keymaps/default_dot_c/rules.mk View File

@ -0,0 +1 @@
CAPS_WORD_ENABLE = yes

+ 64
- 0
keyboards/handwired/hillside/46/keymaps/via/keymap.c View File

@ -0,0 +1,64 @@
// Copyright 2022 Michael McCoyd (@mmccoyd)
// SPDX-License-Identifier: GPL-2.0-or-later
#include QMK_KEYBOARD_H
enum layers {
_QWERTY = 0,
_NAV,
_SYM,
_ADJUST,
};
#define xxxxxxx KC_NO
#define LY_NAV MO(_NAV)
#define LY_SYM MO(_SYM)
#define LY_ADJ MO(_ADJUST)
#define ALT_GR OSM(MOD_RALT)
#define OSM_SFT OSM(MOD_LSFT)
#define PLY_PAU KC_MEDIA_PLAY_PAUSE
#define UNDO LCTL(KC_Z)
#define CUT LCTL(KC_X)
#define COPY LCTL(KC_C)
#define PASTE LCTL(KC_V)
#define REDO LCTL(KC_Y)
// (For OS X, you'll want to change these editing keys to LGUI(KC_Z) etc.)
// clang-format off
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
[_QWERTY] = LAYOUT(
KC_GRV, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC,
KC_TAB, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_ENT,
KC_LCTL, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_ESC, CAPSWRD, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_QUOT,
KC_LGUI, KC_LALT, OSM_SFT, LY_NAV , LY_SYM , KC_SPC , KC_LALT, KC_RGUI
),
[_NAV] = LAYOUT(
COPY , KC_1 , KC_2 , KC_3 , KC_4 , KC_5 , KC_6 , KC_7 , KC_8 , KC_9 , KC_0 , _______,
CUT , KC_LGUI, KC_LALT, KC_LCTL, KC_LSFT, PASTE , KC_PGUP, KC_LEFT, KC_UP , KC_DOWN, KC_RGHT, KC_PGDN,
_______, KC_F1 , KC_F2 , KC_F3 , KC_F4 , KC_F5 , UNDO , REDO , KC_F6 , KC_F7 , KC_F8 , KC_F9 , KC_F10 , KC_RCTL,
_______, _______, _______, _______, LY_ADJ , _______, _______, _______
),
[_SYM] = LAYOUT(
KC_INS, KC_EXLM, KC_AT , KC_HASH, KC_DLR , KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_DEL,
xxxxxxx, KC_BSLS, KC_MINS, KC_EQL , KC_LBRC, KC_RBRC, KC_HOME, KC_RSFT, KC_RCTL, KC_LALT, KC_RGUI, KC_END,
_______, KC_PIPE, KC_UNDS, KC_PLUS, KC_LCBR, KC_RCBR, ALT_GR , KC_APP , KC_MUTE, KC_VOLD, KC_VOLU, KC_MPLY, xxxxxxx, KC_RCTL,
_______, _______, _______, LY_ADJ , _______, _______, _______, _______
),
[_ADJUST] = LAYOUT(
xxxxxxx, xxxxxxx, xxxxxxx, xxxxxxx, AG_SWAP, CG_SWAP, xxxxxxx, KC_F11 , KC_F12 , KC_PSCR, xxxxxxx, EE_CLR,
xxxxxxx, xxxxxxx, KC_BRID, KC_BRIU, AG_NORM, CG_NORM, RGB_MOD, RGB_VAI, RGB_HUI, RGB_SAI, xxxxxxx, xxxxxxx,
xxxxxxx, KC_LGUI, KC_LALT, KC_LCTL, KC_LSFT, xxxxxxx, xxxxxxx, RGB_TOG, RGB_RMOD, RGB_VAD, RGB_HUD, RGB_SAD, xxxxxxx, QK_BOOT,
xxxxxxx, xxxxxxx, xxxxxxx, _______, _______, xxxxxxx, xxxxxxx, xxxxxxx
),
};
// Template:
// [_INDEX] = LAYOUT(
// _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
// _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
// _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
// _______, _______, _______, _______, _______, _______, _______, _______
// ),

+ 2
- 0
keyboards/handwired/hillside/46/keymaps/via/rules.mk View File

@ -0,0 +1,2 @@
CAPS_WORD_ENABLE = yes
VIA_ENABLE = yes

+ 29
- 0
keyboards/handwired/hillside/46/readme.md View File

@ -0,0 +1,29 @@
# Hillside 46
![hillside](https://imgur.com/VFA9E4Yh.png)
[Hillside 46](https://github.com/mmccoyd/hillside)
is a split ergonomic keyboard with 3x6+5 choc-spaced keys,
splayed ring and pinkie columns, aggressive column stagger,
a longer thumb arc and a breakoff outer-pinkie column.
* Keyboard Maintainer: [Michael McCoyd](https://github.com/mmccoyd)
* Hardware Supported: ProMicro/Elite-C and compatible
* Hardware Availability: https://github.com/mmccoyd/hillside
Make example for this keyboard (after setting up your build environment):
make handwired/hillside/46:default
Flashing example for this keyboard:
make handwired/hillside/46:default:flash
## Bootloader
Enter the bootloader by either:
* **Physical reset button**: Briefly press the button on the front of the PCB.
* **Keycode in layout**: Press the key mapped to `RESET` if it is available
See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).

+ 8
- 0
keyboards/handwired/hillside/46/rules.mk View File

@ -0,0 +1,8 @@
SPLIT_KEYBOARD = yes # Use shared split_common code
LTO_ENABLE = yes # Use link time optimization for smaller firmware
# If you add a haptic board,
# enable it and set its driver here or in your keymap folder
# The Pimoroni board's driver is DRV2605L
# HAPTIC_ENABLE = yes # Enable haptic driver
# HAPTIC_DRIVER = DRV2605L

Loading…
Cancel
Save