mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-07-15 20:31:27 +00:00
Rename lrrr to Launch, enbiggen L-Shift to 2U
This commit is contained in:
parent
a7cf88ecf4
commit
3f9f18d82e
@ -3,12 +3,12 @@
|
||||
* After cloning, you probably need to run `make git-submodule`.
|
||||
- You may also need to install dependencies: `sudo apt install avrdude gcc-avr avr-libc`
|
||||
* To build the firmware without flashing the keyboard, use `make (keyboard name):(layout name)`
|
||||
- For example, if I want to build Levi's layout for the lrrr keyboard, I will run:
|
||||
`make system76/lrrr:levi`
|
||||
- For example, if I want to build Levi's layout for the Launch keyboard, I will run:
|
||||
`make system76/launch:levi`
|
||||
* To flash the firmware, you'll use the same build command, but with `flash` added to the end:
|
||||
`make system76/lrrr:default:flash`
|
||||
`make system76/launch:default:flash`
|
||||
- After it builds, you will see a message that says `Detecting USB port, reset your controller now...`. You then want to hit the "RESET" key on the keyboard if it is programmed into the layout.
|
||||
- In the default layout, it is Fn+Esc. If a RESET key is not programmed into the layout, you will have to push the button on the Arduino Micro controller board.
|
||||
- In the default layout, it is Fn+Esc. If a RESET key is not programmed into the layout, you will have to manually reset the controller.
|
||||
|
||||
## Making your own layout:
|
||||
If you want to create your own layout, go to the `keymaps` directory and copy one of the maps in there. You'll probably want to start with the default layout, but the other layouts in there may be helpful references. The name of the directory you create will be the name of your layout. Ensure that it has no spaces or strange symbols, as this could lead to build errors.
|
@ -8,8 +8,8 @@
|
||||
#define PRODUCT_ID 0x1776
|
||||
#define DEVICE_VER 0x0001
|
||||
#define MANUFACTURER System76
|
||||
#define PRODUCT Lrrr
|
||||
#define DESCRIPTION Lrrr Keyboard
|
||||
#define PRODUCT Launch
|
||||
#define DESCRIPTION Launch Keyboard
|
||||
|
||||
/* key matrix size */
|
||||
#define MATRIX_ROWS 6
|
@ -16,9 +16,9 @@ ________________________________________________________________________________
|
||||
| | | | | | | | | | | ; | ' | | | |
|
||||
| CAPS | A | S | D | F | G | H | J | K | L | : | " | ENTER | | END |
|
||||
|____________|________|________|________|________|________|________|________|________|________|________|________|____________|___|________|
|
||||
| | | | | | | | | , | . | / | | |
|
||||
| SHIFT | Z | X | C | V | B | N | M | < | > | ? | SHIFT | UP |
|
||||
____|____________|________|________|________|________|________|________|________|________|________|________|____________|________|_________
|
||||
| | | | | | | | | , | . | / | | |
|
||||
| SHIFT | Z | X | C | V | B | N | M | < | > | ? | SHIFT | UP |
|
||||
|________________|________|________|________|________|________|________|________|________|________|________|____________|________|_________
|
||||
| | | | | | | | | | | | | |
|
||||
| CTRL | FN | LGUI | LALT | SPACE | SPACE | RCTRL | RALT | FN | | LEFT | DOWN | RIGHT |
|
||||
|____________|________|_______|________|_________________|_________________|________|________|_____________| |________|________|________|
|
||||
@ -29,7 +29,7 @@ ________________________________________________________________________________
|
||||
KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC, KC_PGUP,
|
||||
KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS, KC_PGDN,
|
||||
KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, KC_END,
|
||||
KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP,
|
||||
KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP,
|
||||
KC_LCTL, MO(1), KC_LGUI, KC_LALT, KC_SPC, KC_SPC, KC_RCTL, KC_RALT, MO(1), KC_LEFT, KC_DOWN, KC_RIGHT
|
||||
),
|
||||
|
||||
@ -47,9 +47,9 @@ ________________________________________________________________________________
|
||||
| | | | | | | | | | | | | | | |
|
||||
| | | | | | | | | | | | | | | |
|
||||
|____________|________|________|________|________|________|________|________|________|________|________|________|____________|___|________|
|
||||
| | | | | | | | | | | | | |
|
||||
| | | | | | | | | | | | | PGUP |
|
||||
____|____________|________|________|________|________|________|________|________|________|________|________|____________|________|_________
|
||||
| | | | | | | | | | | | | |
|
||||
| | | | | | | | | | | | | PGUP |
|
||||
|________________|________|________|________|________|________|________|________|________|________|________|____________|________|_________
|
||||
| | | | | | | | | | | | | |
|
||||
| | | | | | | | | | | HOME | PGDN | END |
|
||||
|____________|________|_______|________|_________________|_________________|________|________|_____________| |________|________|________|
|
@ -1,5 +1,5 @@
|
||||
|
||||
#include "lrrr.h"
|
||||
#include "launch.h"
|
||||
|
||||
void keyboard_post_init_user(void) {
|
||||
// Customise these values to desired behaviour
|
@ -1,5 +1,5 @@
|
||||
#ifndef LRRR_H
|
||||
#define LRRR_H
|
||||
#ifndef LAUNCH_H
|
||||
#define LAUNCH_H
|
||||
|
||||
#include "quantum.h"
|
||||
|
||||
@ -21,4 +21,4 @@
|
||||
{ K50, K51, K52, K53, K54, ___, K56, K57, K58, K59, K5A, K5B, K5C, ___, ___ }, \
|
||||
}
|
||||
|
||||
#endif // UGLYDENSE_H
|
||||
#endif // LAUNCH_H
|
Loading…
Reference in New Issue
Block a user