User space fixed (#3095)
* Put in my keymaps * Fixed all but weird lets split issue * Organized and tried to trobleshoot lets split * Organized and tried to trobleshoot lets split * Added bbaserdem keymaps * Added bbaserdem keymaps * Fixed stuff * FIxed a filename error
This commit is contained in:
parent
abce980b8b
commit
8eaf23ae81
24 changed files with 1425 additions and 489 deletions
27
keyboards/lets_split/keymaps/bbaserdem/README.md
Normal file
27
keyboards/lets_split/keymaps/bbaserdem/README.md
Normal file
|
@ -0,0 +1,27 @@
|
|||
# Lets Split Layout
|
||||
|
||||
Check out [user readme](../../../../users/bbaserdem/README.md) for more info.
|
||||
|
||||
# Usage
|
||||
|
||||
**These commands depend on there being no other arduino connected!**
|
||||
Also udev rules can be set instead of using sudo.
|
||||
Please unplug all other usb devices.
|
||||
|
||||
To make the hex files;
|
||||
```
|
||||
make lets_split/rev2:bbaserdem
|
||||
make lets_split/rev2:bbaserdem_right
|
||||
```
|
||||
|
||||
For the left half, after plugging in and resetting; (from repo main directory)
|
||||
```
|
||||
sudo avrdude -p atmega32u4 -P "$(ls /dev/ttyACM*)" -c avr109 -D -U flash:w:.build/lets_split_rev2_bbaserdem.hex
|
||||
sudo avrdude -p atmega32u4 -P "$(ls /dev/ttyACM*)" -c avr109 -U eeprom:w:keyboards/lets_split/eeprom-lefthand.eep
|
||||
```
|
||||
|
||||
For the right half;
|
||||
```
|
||||
sudo avrdude -p atmgea34u4 -P "$(ls /dev/ttyACM*)" -c avr109 -D -U flash:w:.build/lets_split_rev2_bbaserdem_right.hex
|
||||
sudo avrdude -p atmega32u4 -P "$(ls /dev/ttyACM*)" -c avr109 -U eeprom:w:keyboards/lets_split/eeprom-righhand.eep
|
||||
```
|
27
keyboards/lets_split/keymaps/bbaserdem/config.h
Executable file
27
keyboards/lets_split/keymaps/bbaserdem/config.h
Executable file
|
@ -0,0 +1,27 @@
|
|||
#ifndef CONFIG_USER_H
|
||||
#define CONFIG_USER_H
|
||||
|
||||
#include "../../config.h"
|
||||
|
||||
#define USE_SERIAL
|
||||
#define EE_HANDS
|
||||
|
||||
// LED strip stuff
|
||||
#ifdef RGBLIGHT_ENABLE
|
||||
|
||||
// Who thought it was a good idea to predefine these in the rev2/config.h ???
|
||||
#ifdef RGBLED_NUM
|
||||
#undef RGBLED_NUM
|
||||
#endif
|
||||
#define RGBLED_NUM 12
|
||||
|
||||
#define RGBLIGHT_HUE_STEP 6
|
||||
#define RGBLIGHT_SAT_STEP 12
|
||||
#define RGBLIGHT_VAL_STEP 20
|
||||
#define RGBLIGHT_ANIMATIONS
|
||||
#define RGBLIGHT_EFFECT_SNAKE_LENGTH 6
|
||||
#define RGBLIGHT_EFFECT_CHRISTMAS_INTERVAL 2000
|
||||
#define RGBLIGHT_EFFECT_CHRISTMAS_STEP 1
|
||||
#endif
|
||||
|
||||
#endif
|
37
keyboards/lets_split/keymaps/bbaserdem/keymap.c
Executable file
37
keyboards/lets_split/keymaps/bbaserdem/keymap.c
Executable file
|
@ -0,0 +1,37 @@
|
|||
/*
|
||||
* Let's Split - Dvorak turkish
|
||||
* Keymap by @bbaserdem
|
||||
* Dvorak layout with multiple features
|
||||
* Most of the code is in the "user" directory.
|
||||
* Check qmk_firmware/users/bbaserdem for the main part of the code
|
||||
*/
|
||||
#define KEYMAP(...) LAYOUT_ortho_4x12(__VA_ARGS__)
|
||||
|
||||
#include "lets_split.h"
|
||||
#include "bbaserdem.h"
|
||||
|
||||
|
||||
void matrix_init_keymap (void) {
|
||||
}
|
||||
|
||||
uint32_t layer_state_set_keymap(uint32_t state) {
|
||||
return state;
|
||||
}
|
||||
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
// Main Dvorak layer
|
||||
[_DV] = DVORAK,
|
||||
// Turkish and special character overlay
|
||||
[_AL] = ALTCHAR,
|
||||
// Gaming layer
|
||||
[_GA] = GAME,
|
||||
// Numbers layer
|
||||
[_NU] = NUMBERS,
|
||||
// Settings layer
|
||||
[_SE] = SETTINGS,
|
||||
// Mouse emulation layer
|
||||
[_MO] = MOUSE,
|
||||
#ifdef AUDIO_ENABLE
|
||||
[_MU] = MUSIC,
|
||||
#endif
|
||||
};
|
11
keyboards/lets_split/keymaps/bbaserdem/rules.mk
Executable file
11
keyboards/lets_split/keymaps/bbaserdem/rules.mk
Executable file
|
@ -0,0 +1,11 @@
|
|||
# Build options
|
||||
|
||||
BACKLIGHT_ENABLE = no # Switch LEDs
|
||||
MOUSEKEY_ENABLE = yes # Emulates mouse key using keypresses
|
||||
RGBLIGHT_ENABLE = yes # LED strips
|
||||
TAP_DANCE_ENABLE = no # Use multi-tap features
|
||||
AUDIO_ENABLE = no # Audio stuff
|
||||
|
||||
ifndef QUANTUM_DIR
|
||||
include ../../../../Makefile
|
||||
endif
|
Loading…
Add table
Add a link
Reference in a new issue