summaryrefslogtreecommitdiff
path: root/keyboards/dz60/dz60.h
Commit message (Collapse)AuthorAge
* [Keymap] add keymap with split spacebar, ansi, hhkb features (#6114)Calvin Moody2019-06-11
| | | | | | | | | | | | | | | | * add calbatr0ss dz60 layout * add media controls * add media next/prev controls * add base layer for windows and macos * swap right ctrl and menu * missing bracket * update gitignore
* Add 60_ansi_split_bs_rshift layout to DZ60, with a new keymap for the same ↵Jonathan Rascher2019-06-07
| | | | | | | | | | | | | | | | | | (#6096) * Add 60_ansi_split_bs_rshift layout to DZ60 I know there's already a lot of DZ60 layout macros, and #4668 suggests they should be refactored at some point, but since this is one of the standard layouts already in QMK that this PCB supports, I figured it was okay to add so that DZ60 keyboards can share this layout with other keyboards. * New 60% ANSI split backspace/right-shift layout I'm using this on a DZ60, but it should work fine on most 60% PCBs. It's basically a HHKB layout with a standard ANSI bottom row (3x 1.25U mods, 6.25U spacebar, 4x 1.25U mods).
* [Kenyboard] Add ansi_split_space_rshift layout to DZ60 (#6004)Klemen Košir2019-05-28
| | | | | | | | * [DZ60] Add ansi_split_space_rshift layout * [DZ60] Add kream keymap * Revert spacebar sizes
* [Keyboard] Fix dz60 LAYOUT_60_iso_split_space_bs_rshift api errors (#5852)zvecr2019-05-11
| | | | | | * Fix LAYOUT_60_iso_split_space_bs_rshift to match comments and Configurator * Fix LAYOUT_60_iso_split_space_bs_rshift to match comments and Configurator
* [Keymap] DZ60 keymap and layout (#5474)Oliver Granlund2019-05-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * init * function layout planning * nordic keymap v1.0 * Added latest satan layouts, updated readmes * Cleaning code * Renamed ISO -> iso * Updated keymap to work better with Swedish layout * merge conflict * Added dz60 layout * pr issues fixes * removed weirdly positioned files * code cleanup, added dz60 layout json data * Added dz60 layout readme * Renamed layout * removed vscode file * Update keyboards/dz60/dz60.h Co-Authored-By: OlliGranlund <OlliGranlund@users.noreply.github.com>
* Add tsangan layout to dz60 with a "sane" default keymap (#4717)Jason Thigpen2018-12-24
|
* Keyboard: Add dz60 tsangan hhkb (#4529)Jason Thigpen2018-12-05
| | | | | | | | | | | | | | | | | | * Add tsangan bottom row hhkb layout for dz60 * Add crd's tsangan hhkb layout for dz60 * Resort to native key aliases when they exist * Update crd's dz60 ansi keymap to match updates for hhkb fn layer * Add tsangan hhkb layout to dz60 info.json for KLE * Fix JSON nesting in dz60 layouts block * Minor adjustments to crd layouts to make them more consistent * Update layout naming to 60_tsangan_hhkb
* Add personal zvecr dz60 keymap (#4443)zvecr2018-11-18
| | | | | | * Add Configurator support for dz60 ansi split space * Add keymap and fix layout macro
* added ASCII representation to dz60 iso-split layout and adjusted it so that ↵SpacebarRacecar2018-10-22
| | | | it's consistent with the other layouts. (#4207)
* added an ISO split spacebar layout, keymap and readme files (#4165)mcarni2018-10-19
|
* Keyboard: DZ60: add Plate B layouts (#4076)noroadsleft2018-10-04
| | | Adds maximized DZ60 Plate B layout macros in ANSI and ISO, featuring 2.25u Left Shift (1.25u/1u split for ISO) and 1.75u Right Shift with Inverted-T arrow keys. Also supports Split Spacebar and Split Backspace.
* Keyboard: DZ60 cleanup (#3994)noroadsleft2018-10-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * DZ60: Deleted K214 from LAYOUT_all * DZ60: Delete matrix LAYOUT_2_shifts; replace with LAYOUT_all After the deletion of K214 from LAYOUT_all, LAYOUT_all and LAYOUT_2_shifts are identical. Deprecated LAYOUT_2_shifts in favor of LAYOUT_all. * DZ60: refactor 256k_HHKB and itsaferbie keymaps to use LAYOUT_60_hhkb macro Both keymaps previously used the LAYOUT_hhkb macro. After comparing the macros, the only difference between them was that LAYOUT_hhkb included the place of the ISO Backslash key. Neither keymap used this key, so both were refactored to use LAYOUT_60_hhkb instead. LAYOUT_hhkb is now essentially unused by any keymaps in the repo. (More on that in a moment.) * DZ60: bugfix for dbroqua keymap This keymap had two layers that used the LAYOUT_true_hhkb macro and a third that used LAYOUT_hhkb. These macros have the same number of keys, but represent different physical layouts. As the "main" layers used LAYOUT_true_hhkb, switched the third layer to LAYOUT_true_hhkb as well. The LAYOUT_hhkb macro is now unused by any DZ60 keymaps in the repo, and can be safely deleted. * DZ60: bugfix for 60_ansi_arrow_fkeys, 60_plus_arrows, and stephengrier keymaps All three keymaps had one layer in LAYOUT_all and one in LAYOUT_directional. Only difference between these macros is LAYOUT_all excludes the ISO Backslash position. As none of the keymaps used this position, all layers were switched to use LAYOUT_directional. * DZ60: added layout mock-ups to dz60.h Documenting the physical layouts that go with each matrix. * DZ60: replace TMK SHIFT_ESC with QMK Grave Escape Replaced all instances of keycodes that called TMK's ACTION_FUNCTION(SHIFT_ESC) with QMK's KC_GESC, and added config.h files so KC_GESC behaves as the deprecated TMK function did, except for the default keymap, which I thought should have the QMK standard behavior. * DZ60: delete SHIFT_ESC code blocks Deleted ACTION_FUNCTION(SHIFT_ESC) code blocks from keymaps that didn't use the functionality it provided. * DZ60: deleted unused MODS_CTRL_MASk definitions Was used in the now-deleted SHIFT_ESC code blocks. Interestingly named MODS_CTRL_MASK when it was actually checking the Shift keys. *shrug* * DZ60: refactor jkbone keymap to use process_record_user Replaced TMK action_function keycodes with QMK process_record_user equivalents. * DZ60: delete unused layout macros The macros LAYOUT_hhkb, LAYOUT_directional_625_space, and LAYOUT_60_ansi_split_bs_rshift_5x1u were unused by any keymaps in the repo, and have thus been deleted. * DZ60: refactor iso_6u_space and iso_7u_space keymaps Both keymaps refactored to use the LAYOUT_60_iso macro. * DZ60: refactor dz60.h Updated the notation of the switch arguments. Format is now: `k<row><column>` where `<row>` is `[0-4]` and `<column>` is `[0-9a-e]`. * DZ60: refactor LAYOUT_60_iso_5x1u matrix Updated matrix so `KC_ENT` belongs on the home row, which is consistent with LAYOUT_60_iso for the DZ60 as well as the ISO community layouts. * DZ60: fix white space in dz60.h I hate when indentation is inconsistent within a file.
* Keyboard: DZ60 Bug: layout_directional is shifted to the left by one (#3978)MechMerlin2018-09-24
| | | | | | * layout_directional is shifted to the left by one * forgot to adjust the physical layout
* Keyboard: Add ansi, split bs and rshift, 5 1u keys to right of space in DZ60 ↵orbitingorca2018-08-11
| | | | | | | | | | (#3612) * Dz60 keymap, ansi, split bs and rshift, 5 1u keys to right of space fixup * Change Keymap to layout
* Keyboard: Enable using shared user hhkb layout for dz60 (#3549)orbitingorca2018-08-02
|
* DZ60 Configurator fix and refactor (#3205)noroadsleft2018-06-21
| | | | | | | | | | | | * Bugfix refactor * Added 60_iso layout to rules.mk * Added sample ISO-UK keymap * Keymap refactor * Fixes per @andys8
* ISO Keymap & Layout for dz60 (#3198)Jan Kolkmeier2018-06-17
| | | | | | | | * added ISO layout * ISO dz60 layout: jkbone * replace includes
* DZ60: Add LAYOUT_directional_625_space (#3148)noroadsleft2018-06-08
|
* Add standard layout 60% support for QMK Configurator and user space (#2950)MechMerlin2018-05-12
|
* new layout for iso and arrows (#2865)MechMerlin2018-05-01
|
* More Configurator Warning Fixes (#2716)MechMerlin2018-04-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * mf68_ble did not have the correct .c and .h files * Fix JC65 KEYMAP to LAYOUT * Change KEYMAP to LAYOUT for s60_x * Convert KEYMAP to LAYOUT for lets_split boards * Convert KEYMAP to LAYOUT * more fixes to keymap for iris * convert KEYMAP to LAYOUT for levinson keyboard * change losinggeneration's KEYMAP to LAYOUT * convert KEYMAP to LAYOUT * convert KEYMAP to LAYOUT for nyquist * convert KEYMAP to LAYOUT * convert KEYMAP to LAYOUT for viterbi * convert KEYMAP to LAYOUT * convert KEYMAP and its subsidiries to the LAYOUT standard * convert KEYMAP and its subsidiries to the new LAYOUT standard
* Configurator/dz60 support for info.json (#2568)MechMerlin2018-03-20
| | | | | | | | | | * Add info.json file for qmk_configurator Unfortunately none of these keymaps look like a board I've seen in the wild. Some further tweaks will have to be done to the keymaps directly. * add comment indicating need to edit info.json when keymap changes
* DZ60 changes (#1890)Damien2017-10-23
| | | | | | | | | | | | | | | | | | * - Fixed DK60 version in config.h * - Updated dk60 readme with new QMK rules * - Fixed wording in readme * Added dbroqua layout for DZ60 I've also updated dz60.h to add "true HHKD" keymap definition (6U spacebar). With the default HHKB definition r_alt was not mapped and when I pressed r_menu it was r_alt. Regards
* Updated DZ60 HHKB layout and add my own layout (#1828)Donald2017-10-13
| | | | | | | | * Updated DZ60 to properly handle HHKB layout, and added my own HHKB layout * Added dedicated underglow keys * Fixed compile issue
* adds DZ60 support (#1734)Jack Humbert2017-09-19
* adds support for dz60 * fix dz60 readme