Neo2Planck (#2032)
* Documentation * Enabled Mouse-Keys in Makefile * Layer 1 finished * Small Bugfixes * Updated documentationpjrc_hid
parent
d6ca4e555a
commit
c6cdd5422f
@ -0,0 +1,8 @@
|
||||
#ifndef CONFIG_USER_H
|
||||
#define CONFIG_USER_H
|
||||
|
||||
#include "../../config.h"
|
||||
|
||||
#define PREVENT_STUCK_MODIFIERS
|
||||
|
||||
#endif
|
@ -0,0 +1,64 @@
|
||||
Neo2Planck
|
||||
=====================================
|
||||
|
||||
This layout tries to emulate Neo2, and is intended to be used with a German QWERTZ softwarelayout.
|
||||
It has "üäöß" as it is optimized for a mix of German & English.
|
||||
The special character layer and the navigation & number block layer are designed to keep the fingers near the home row.
|
||||
|
||||
This layout has some adaptations, due to the limited keys available:
|
||||
* function-keys moved to the bottom row
|
||||
* press M1 + M2 to get to layer 3
|
||||
|
||||
Neo2 wiki page: http://wiki.neo-layout.org/
|
||||
|
||||
## Neo2 Base Layer
|
||||
```
|
||||
,-----------------------------------------------------------------------------------.
|
||||
| Esc | X | V | L | C | W | K | H | G | F | Q | Bksp |
|
||||
|------+------+------+------+------+-------------+------+------+------+------+------|
|
||||
| Ent | U | I | A | E | O | S | N | R | T | D | Y |
|
||||
|------+------+------+------+------+------|------+------+------+------+------+------|
|
||||
| Shift| Ü | Ö | Ä | P | Z | B | M | , | . | J |Shift |
|
||||
|------+------+------+------+------+------+------+------+------+------+------+------|
|
||||
| Ctrl | GUI | Alt | M2 | M1 | Space | M1 | M2 | Alt |MRight| Ctrl |
|
||||
`-----------------------------------------------------------------------------------'
|
||||
```
|
||||
|
||||
# M1 Special Characters
|
||||
```
|
||||
,-----------------------------------------------------------------------------------.
|
||||
| Esc | | _ | [ | ] | ^ | ! | < | > | = | & | ß |
|
||||
|------+------+------+------+------+-------------+------+------+------+------+------|
|
||||
| Tab | \ | / | { | } | * | ? | ( | ) | - | : | @ |
|
||||
|------+------+------+------+------+------|------+------+------+------+------+------|
|
||||
| Shift| # | $ | | | ~ | ` | + | % | " | ' | ; |Shift |
|
||||
|------+------+------+------+------+------+------+------+------+------+------+------|
|
||||
| Ctrl | GUI | Alt | M2 | M1 | Space | M1 | M2 | Alt | Esc | Ctrl |
|
||||
`-----------------------------------------------------------------------------------'
|
||||
```
|
||||
|
||||
## M2 Navigation & Number Blocks
|
||||
```
|
||||
,-----------------------------------------------------------------------------------.
|
||||
| | PgUp | Bksp | Up | DEL | PgDn | | 7 | 8 | 9 | | Ins |
|
||||
|------+------+------+------+------+-------------+------+------+------+------+------|
|
||||
| Tab | Home | Lft | Down | Right| End | | 4 | 5 | 6 | . | Enter|
|
||||
|------+------+------+------+------+------|------+------+------+------+------+------|
|
||||
| Shift| | Tab | | Enter| | 0 | 1 | 2 | 3 | , |Shift |
|
||||
|------+------+------+------+------+------+------+------+------+------+------+------|
|
||||
| Ctrl | GUI | Alt | M2 | M1 | Space | M1 | M2 | Alt | Esc | Ctrl |
|
||||
`-----------------------------------------------------------------------------------'
|
||||
```
|
||||
|
||||
## M3 F-Keys and Media-Keys
|
||||
```
|
||||
,-----------------------------------------------------------------------------------.
|
||||
| | | Print|Scroll|Pause | | | F7 | F8 | F9 | F12 | |
|
||||
|------+------+------+------+------+-------------+------+------+------+------+------|
|
||||
| Tab | | Mute | Vol- | Vol+ | | ³ | F4 | F5 | F6 | F11 | Enter|
|
||||
|------+------+------+------+------+------|------+------+------+------+------+------|
|
||||
| Shift| | Prev | Play | Next | | ² | F1 | F2 | F3 | F10 |Shift |
|
||||
|------+------+------+------+------+------+------+------+------+------+------+------|
|
||||
| Ctrl | GUI | Alt | M2 | M1 | Space | M1 | M2 | Alt | Esc | Ctrl |
|
||||
`-----------------------------------------------------------------------------------'
|
||||
```
|
@ -0,0 +1,23 @@
|
||||
# Build Options
|
||||
# change to "no" to disable the options, or define them in the Makefile in
|
||||
# the appropriate keymap folder that will get included automatically
|
||||
#
|
||||
BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000)
|
||||
MOUSEKEY_ENABLE = yes # Mouse keys(+4700)
|
||||
EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
|
||||
CONSOLE_ENABLE = no # Console for debug(+400)
|
||||
COMMAND_ENABLE = no # Commands for debug and configuration
|
||||
NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
|
||||
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
|
||||
MIDI_ENABLE = no # MIDI controls
|
||||
AUDIO_ENABLE = no # Audio output on port C6
|
||||
UNICODE_ENABLE = no # Unicode
|
||||
BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
|
||||
RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight. Do not enable this with audio at the same time.
|
||||
|
||||
# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
|
||||
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
||||
|
||||
ifndef QUANTUM_DIR
|
||||
include ../../../../Makefile
|
||||
endif
|
Loading…
Reference in New Issue