* Added accent. * Added keymap for 5x6 dactyl manuform on KOY layout * Added xd75 folder that is not in the main repo anymore? * Added keymap for naked48 on KOY layout * Added keymap for splitreus62 on KOY layout * Added keymap for Dactyl Manuform 4x6 with RGB LEDs and K.O,Y layout * Fixed error where handedness was not correctly determined because of combining vbus pins of both controllers. * Replaced dynamic macros bith backspace and delete. * Changed detecting handedness from detecting usb communication to checking a wired pin. This avoids problems when booting the PC, where VBUS is already high, but no communication is happening -> both halves think they are not master. * Update keyboards/handwired/dactyl_manuform/4x6/keymaps/scheiklp/rules.mk Co-authored-by: Drashna Jaelre <drashna@live.com> * Update keyboards/naked48/keymaps/scheiklp/keymap.c Co-authored-by: Drashna Jaelre <drashna@live.com> * Update keyboards/naked48/keymaps/scheiklp/keymap.c Co-authored-by: Drashna Jaelre <drashna@live.com> * Update keyboards/naked48/keymaps/scheiklp/keymap.c Co-authored-by: Drashna Jaelre <drashna@live.com> * Update keymap.c Added copyright * Update config.h * Update rules.mk * Updated files according to PR requests. * Update keyboards/xd75/config.h Co-authored-by: Drashna Jaelre <drashna@live.com> * Update keyboards/xd75/config.h Co-authored-by: Drashna Jaelre <drashna@live.com> * Update keyboards/xd75/keymaps/default/keymap.c Co-authored-by: Drashna Jaelre <drashna@live.com> * Update keyboards/xd75/config.h Co-authored-by: Drashna Jaelre <drashna@live.com> * Removed duplicate code. Updated copyright info. * Restored readme Co-authored-by: Drashna Jaelre <drashna@live.com>
		
			
				
	
	
		
			64 lines
		
	
	
	
		
			2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
	
		
			2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
#pragma once
 | 
						||
 | 
						||
/*
 | 
						||
This file defines the desierd KOY keys if you use a software (operating sysetm)
 | 
						||
configured for a QUERTZ layout (de-latin1).
 | 
						||
These chars can be created by using ALTGR on linux and a few of them on windows
 | 
						||
with a German de-latin1 layout (depending on desktop environment and/or
 | 
						||
application).
 | 
						||
    ′¹²³¼½¬{[]}\¸
 | 
						||
    @ł€¶ŧ←↓→øþ¨~
 | 
						||
    æſðđŋħ̣ĸł˝^’
 | 
						||
    |»«¢„“”µ·…–
 | 
						||
Additionally, there are some common chars that we dit not yet define:
 | 
						||
    §
 | 
						||
*/
 | 
						||
 | 
						||
 | 
						||
// NQN key definitions in no particular order
 | 
						||
#define N_LT KC_NONUS_BSLASH
 | 
						||
#define N_HS KC_NONUS_HASH
 | 
						||
#define N_DOTS RALT(KC_DOT) // …
 | 
						||
#define N_USC LSFT(KC_SLASH) // _
 | 
						||
#define N_LSQBR RALT(KC_8) // [
 | 
						||
#define N_RSQBR RALT(KC_9) // ]
 | 
						||
#define N_CIRC KC_GRAVE // ^
 | 
						||
#define N_EXKL LSFT(KC_1) // !
 | 
						||
#define N_GT LSFT(KC_NONUS_BSLASH) // >
 | 
						||
#define N_EQ LSFT(KC_0) // =
 | 
						||
#define N_AMP LSFT(KC_6) // &
 | 
						||
#define N_BSLS RALT(KC_MINS) // \ backslash
 | 
						||
#define N_SLSH LSFT(KC_7) // /
 | 
						||
#define N_LCUBR RALT(KC_7) // {
 | 
						||
#define N_RCUBR RALT(KC_0) // }
 | 
						||
#define N_ASTR LSFT(KC_RBRC) // *
 | 
						||
#define N_QUES LSFT(KC_MINS) // ?
 | 
						||
#define N_LPARN LSFT(KC_8) // (
 | 
						||
#define N_RPARN LSFT(KC_9) // )
 | 
						||
#define N_MINS KC_SLASH // -
 | 
						||
#define N_COLN LSFT(KC_DOT) // :
 | 
						||
#define N_HASH KC_BSLASH // #
 | 
						||
#define N_DLR LSFT(KC_4) // $
 | 
						||
#define N_PIPE RALT(KC_NONUS_BSLASH) // |
 | 
						||
#define N_TILD RALT(KC_RBRC) // ~
 | 
						||
#define N_GRAVE LSFT(KC_EQUAL) // `
 | 
						||
#define N_PLUS KC_RBRC // +
 | 
						||
#define N_PERC LSFT(KC_5) // %
 | 
						||
#define N_QUOT LSFT(KC_2) // "
 | 
						||
#define N_SING LSFT(KC_BSLASH) // '
 | 
						||
#define N_SEMI LSFT(KC_COMM) // ;
 | 
						||
#define N_EURO RALT(KC_E) // €
 | 
						||
#define N_AT RALT(KC_Q) // @
 | 
						||
#define N_Z KC_Y
 | 
						||
#define N_Y KC_Z
 | 
						||
#define N_AE KC_QUOTE // ä
 | 
						||
#define N_OE KC_SCOLON // ö
 | 
						||
#define N_UE KC_LBRACKET // ü
 | 
						||
#define N_MU RALT(KC_M) // µ
 | 
						||
#define N_SS KC_MINS // ß
 | 
						||
#define N_DEGRE LSFT(KC_GRAVE) // °
 | 
						||
#define N_PASTE LCTL(KC_V) // CTRL+V
 | 
						||
#define N_COPY LCTL(KC_C) // CTRL+C
 | 
						||
#define N_CUT LCTL(KC_X) // CTRL+X
 | 
						||
#define N_UNDO LCTL(N_Z) // CTRL+Z
 | 
						||
#define N_ACUT KC_EQL  // ´
 |