Userspace and keymap update for user bbaserdem. (#14484)
This commit is contained in:
		
							parent
							
								
									f439fe6055
								
							
						
					
					
						commit
						fd44341cbf
					
				
					 74 changed files with 4723 additions and 1300 deletions
				
			
		| 
						 | 
				
			
			@ -1,27 +0,0 @@
 | 
			
		|||
# 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
 | 
			
		||||
```
 | 
			
		||||
| 
						 | 
				
			
			@ -1,27 +0,0 @@
 | 
			
		|||
#ifndef CONFIG_KEYMAP_H
 | 
			
		||||
#define CONFIG_KEYMAP_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
 | 
			
		||||
| 
						 | 
				
			
			@ -1,35 +0,0 @@
 | 
			
		|||
/*
 | 
			
		||||
 * 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
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
#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] = LAYOUT_letssplit_wrapper(DVORAK),
 | 
			
		||||
    // Turkish and special character overlay
 | 
			
		||||
    [_AL] = LAYOUT_letssplit_wrapper(ALTCHAR),
 | 
			
		||||
    // Gaming layer
 | 
			
		||||
    [_GA] = LAYOUT_letssplit_wrapper(GAME),
 | 
			
		||||
    // Numbers layer
 | 
			
		||||
    [_NU] = LAYOUT_letssplit_wrapper(NUMBERS),
 | 
			
		||||
    // Settings layer
 | 
			
		||||
    [_SE] = LAYOUT_letssplit_wrapper(SETTINGS),
 | 
			
		||||
    // Mouse emulation layer
 | 
			
		||||
    [_MO] = LAYOUT_letssplit_wrapper(MOUSE),
 | 
			
		||||
    // Music layer
 | 
			
		||||
    [_MU] = LAYOUT_letssplit_wrapper(MUSIC),
 | 
			
		||||
};
 | 
			
		||||
| 
						 | 
				
			
			@ -1,8 +0,0 @@
 | 
			
		|||
# 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
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -1,5 +0,0 @@
 | 
			
		|||
# Lets Split - Right Half
 | 
			
		||||
 | 
			
		||||
Keymap for my right half, to be used as a numpad.
 | 
			
		||||
Check [main readme](../bbaserdem/README.md) for flashing info.
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -1,9 +0,0 @@
 | 
			
		|||
#ifndef CONFIG_KEYMAP_H
 | 
			
		||||
#define CONFIG_KEYMAP_H
 | 
			
		||||
 | 
			
		||||
#include "../../config.h"
 | 
			
		||||
 | 
			
		||||
#define USE_SERIAL
 | 
			
		||||
#define EE_HANDS
 | 
			
		||||
 | 
			
		||||
#endif
 | 
			
		||||
| 
						 | 
				
			
			@ -1,31 +0,0 @@
 | 
			
		|||
/*
 | 
			
		||||
 * 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
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
#include "lets_split.h"
 | 
			
		||||
 | 
			
		||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
 | 
			
		||||
 | 
			
		||||
  /*      Navigation All Supered)                        Numpad
 | 
			
		||||
   * ,-----------------------. ,-----------------------.
 | 
			
		||||
   * | F4| ` | Q |Alt| L | > | | ) | - | + | = |Ent|Bkp|
 | 
			
		||||
   * |---+---+---+---+---+---| |---+---+---+---+---+---|
 | 
			
		||||
   * | F3| M |Ent|Ctl| K | ^ | | ( | * | 9 | 6 | 3 | . |
 | 
			
		||||
   * |---+---+---+---+---+---| |---+---+---+---+---+---|
 | 
			
		||||
   * | F2| T |Spc|Shf| J | v | | % | / | 8 | 5 | 2 | , |
 | 
			
		||||
   * |---+---+---+---+---+---| |---+---+---+---+---+---|
 | 
			
		||||
   * | F1| F | P |Tab| H | < | |Nlc|Tab| 7 | 4 | 1 | 0 |
 | 
			
		||||
   * `-----------------------' `-----------------------'
 | 
			
		||||
   */
 | 
			
		||||
  // Main Dvorak layer
 | 
			
		||||
  [0] = LAYOUT_ortho_4x12(
 | 
			
		||||
    LCTL(LALT(KC_DEL)), LGUI(KC_GRV), LGUI(KC_Q),   LGUI(KC_LALT), LGUI(KC_L), LGUI(KC_RGHT), KC_RPRN, KC_PMNS, KC_PPLS, KC_PEQL, KC_PENT, KC_BSPC, \
 | 
			
		||||
    LGUI(KC_F3),        LGUI(KC_M),   LGUI(KC_ENT), LGUI(KC_LCTL), LGUI(KC_K), LGUI(KC_UP),   KC_LPRN, KC_PAST, KC_P9,   KC_P6,   KC_P3,   KC_PDOT, \
 | 
			
		||||
    LGUI(KC_F2),        LGUI(KC_T),   LGUI(KC_SPC), LGUI(KC_LSFT), LGUI(KC_J), LGUI(KC_DOWN), KC_PERC, KC_PSLS, KC_P8,   KC_P5,   KC_P2,   KC_PCMM, \
 | 
			
		||||
    LGUI(KC_F1),        LGUI(KC_F),   LGUI(KC_P),   LGUI(KC_TAB),  LGUI(KC_H), LGUI(KC_LEFT), KC_NLCK, KC_TAB,  KC_P7,   KC_P4,   KC_P1,   KC_P0   \
 | 
			
		||||
  )
 | 
			
		||||
};
 | 
			
		||||
| 
						 | 
				
			
			@ -1,19 +0,0 @@
 | 
			
		|||
# Build options
 | 
			
		||||
 | 
			
		||||
USER_NAME := bbaserdem-without-userspace
 | 
			
		||||
 | 
			
		||||
BACKLIGHT_ENABLE = no		# Switch LEDs
 | 
			
		||||
MOUSEKEY_ENABLE = no		# Emulates mouse key using keypresses
 | 
			
		||||
RGBLIGHT_ENABLE = no 		# LED strips
 | 
			
		||||
TAP_DANCE_ENABLE = no 		# Use multi-tap features
 | 
			
		||||
AUDIO_ENABLE = no 			# Audio stuff
 | 
			
		||||
BLUETOOTH_ENABLE = no 		# No bluetooth
 | 
			
		||||
COMMAND_ENABLE = no			# Some bootmagic thing
 | 
			
		||||
BOOTMAGIC_ENABLE = no       # Enable Bootmagic Lite
 | 
			
		||||
CONSOLE_ENABLE = no			# Allows console output with a command
 | 
			
		||||
SLEEP_LED_ENABLE = no  		# Breathes LED's when computer is asleep. Untested.
 | 
			
		||||
NKRO_ENABLE = no 			# Default is 6KRO which is plenty
 | 
			
		||||
MIDI_ENABLE = no 			# Untested feature
 | 
			
		||||
KEY_LOCK_ENABLE = no 		# Allows locking any key. Not used
 | 
			
		||||
UNICODE_ENABLE = no			# Used for unicode character emulation
 | 
			
		||||
EXTRAKEY_ENABLE = no		# OS signals like volume control
 | 
			
		||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue