Add support for Dimple (#5963)
Add support for Dimple, a 40% custom keyboard designed and produced by LazyDesigners.
This commit is contained in:
		
							parent
							
								
									701a1d9435
								
							
						
					
					
						commit
						f7caca51f6
					
				
					 8 changed files with 463 additions and 0 deletions
				
			
		
							
								
								
									
										136
									
								
								keyboards/lazydesigners/dimple/keymaps/default/keymap.c
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										136
									
								
								keyboards/lazydesigners/dimple/keymaps/default/keymap.c
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,136 @@
 | 
			
		|||
/* Copyright 2019 Erovia
 | 
			
		||||
 *
 | 
			
		||||
 * This program is free software: you can redistribute it and/or modify
 | 
			
		||||
 * it under the terms of the GNU General Public License as published by
 | 
			
		||||
 * the Free Software Foundation, either version 2 of the License, or
 | 
			
		||||
 * (at your option) any later version.
 | 
			
		||||
 *
 | 
			
		||||
 * This program is distributed in the hope that it will be useful,
 | 
			
		||||
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
			
		||||
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
			
		||||
 * GNU General Public License for more details.
 | 
			
		||||
 *
 | 
			
		||||
 * You should have received a copy of the GNU General Public License
 | 
			
		||||
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | 
			
		||||
 */
 | 
			
		||||
#include QMK_KEYBOARD_H
 | 
			
		||||
 | 
			
		||||
enum custom_layers {
 | 
			
		||||
	_QWERTY,
 | 
			
		||||
	_LOWER,
 | 
			
		||||
	_RAISE,
 | 
			
		||||
	_ADJUST
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
// Act as Shift on hold and as CapsLock on tap
 | 
			
		||||
#define SFT_CPS LSFT_T(KC_CAPS)
 | 
			
		||||
// Left space on tap, LOWER on hold
 | 
			
		||||
#define SPC_LOW LT(_LOWER, KC_SPC)
 | 
			
		||||
// Left space on tap, UPPER on hold
 | 
			
		||||
#define SPC_UPR LT(_RAISE, KC_SPC)
 | 
			
		||||
 | 
			
		||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
 * ,---------------------------------------------------------------.
 | 
			
		||||
 * |Esc | Q  | W  | E  | R  | T  | Y  | U  | I  | O  | P  |  Bspc  |
 | 
			
		||||
 * |---------------------------------------------------------------|
 | 
			
		||||
 * | Tab  | A  | S  | D  | F  | G  | H  | J  | K  | L  | '  |Enter |
 | 
			
		||||
 * |---------------------------------------------------------------|
 | 
			
		||||
 * | Shift  | Z  | X  | C  | V  | B  | N  | M  | ,  | Up |    .    |
 | 
			
		||||
 * |---------------------------------------------------------------|
 | 
			
		||||
 *      |Ctrl|Gui |Alt | Spc/Lwr |   Spc/Rse   |Left|Down|Rght|
 | 
			
		||||
 *      `-----------------------------------------------------'
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
	[_QWERTY] = LAYOUT(
 | 
			
		||||
		KC_GESC, KC_Q,    KC_W,    KC_E,    KC_R,    KC_T,    KC_Y,    KC_U,    KC_I,    KC_O,    KC_P,    KC_BSPC,
 | 
			
		||||
		KC_TAB,  KC_A,    KC_S,    KC_D,    KC_F,    KC_G,    KC_H,    KC_J,    KC_K,    KC_L,    KC_QUOT, KC_ENT,
 | 
			
		||||
		SFT_CPS, KC_Z,    KC_X,    KC_C,    KC_V,    KC_B,    KC_N,    KC_M,    KC_COMM, KC_UP,   KC_DOT,
 | 
			
		||||
		KC_LCTL, KC_LGUI, KC_LALT, SPC_LOW,  SPC_UPR,  KC_LEFT, KC_DOWN, KC_RGHT
 | 
			
		||||
	),
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
 * ,---------------------------------------------------------------.
 | 
			
		||||
 * | ~  | !  | @  | #  | $  | %  | ^  | &  | *  | (  | )  |        |
 | 
			
		||||
 * |---------------------------------------------------------------|
 | 
			
		||||
 * | Del  | F1 | F2 | F3 | F4 | F5 | F6 | _  | +  | {  | }  |  |   |
 | 
			
		||||
 * |---------------------------------------------------------------|
 | 
			
		||||
 * |        | F7 | F8 | F9 |F10 |F11 |F12 |    | ;  |PgUp|   /     |
 | 
			
		||||
 * |---------------------------------------------------------------|
 | 
			
		||||
 *      |    |    |    |         |             |Home|PgDn|End |
 | 
			
		||||
 *      `-----------------------------------------------------'
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
	[_LOWER] = LAYOUT(
 | 
			
		||||
		KC_TILD, KC_EXLM, KC_AT,   KC_HASH, KC_DLR,  KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_NO,
 | 
			
		||||
		KC_DEL,  KC_F1,   KC_F2,   KC_F3,   KC_F4,   KC_F5,   KC_F6,   KC_UNDS, KC_PLUS, KC_LCBR, KC_RCBR, KC_PIPE,
 | 
			
		||||
		KC_NO,   KC_F7,   KC_F8,   KC_F9,   KC_F10,  KC_F11,  KC_F12,  KC_NO,   KC_SCLN, KC_PGUP, KC_SLSH,
 | 
			
		||||
		KC_NO,   KC_NO,   KC_NO,   KC_TRNS, KC_TRNS, KC_HOME, KC_PGDN, KC_END
 | 
			
		||||
	),
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
 * ,---------------------------------------------------------------.
 | 
			
		||||
 * | `  | 1  | 2  | 3  | 4  | 5  | 6  | 7  | 8  | 9  | 0  |        |
 | 
			
		||||
 * |---------------------------------------------------------------|
 | 
			
		||||
 * | Ins  | F1 | F2 | F3 | F4 | F5 | F6 | -  | =  | [  | ]  |  \   |
 | 
			
		||||
 * |---------------------------------------------------------------|
 | 
			
		||||
 * |        | F7 | F8 | F9 |F10 |F11 |F12  |    |    |   |         |
 | 
			
		||||
 * |---------------------------------------------------------------|
 | 
			
		||||
 *      |VolD|Mute|VolU|         |             |    |    |    |
 | 
			
		||||
 *      `-----------------------------------------------------'
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
	[_RAISE] = LAYOUT(
 | 
			
		||||
		KC_GRV,  KC_1,    KC_2,    KC_3,    KC_4,    KC_5,    KC_6,    KC_7,    KC_8,    KC_9,    KC_0,    KC_NO,
 | 
			
		||||
		KC_INS,  KC_F1,   KC_F2,   KC_F3,   KC_F4,   KC_F5,   KC_F6,   KC_MINS, KC_EQL,  KC_LBRC, KC_RBRC, KC_BSLS,
 | 
			
		||||
		KC_NO,   KC_F7,   KC_F8,   KC_F9,   KC_F10,  KC_F11,  KC_F12,  KC_NO,   KC_NO,   KC_NO,   KC_NO,
 | 
			
		||||
		KC_VOLD, KC_MUTE, KC_VOLU, KC_TRNS, KC_TRNS, KC_NO,   KC_NO,   KC_NO
 | 
			
		||||
	),
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
 * ,---------------------------------------------------------------.
 | 
			
		||||
 * |EEPR|RST |    |    |    |    |    |    |    |    |    |        |
 | 
			
		||||
 * |---------------------------------------------------------------|
 | 
			
		||||
 * |      |    |    |    |    |    |    |    |    |    |    |      |
 | 
			
		||||
 * |---------------------------------------------------------------|
 | 
			
		||||
 * |        |    |    |    |    |    |     |    |    |   |         |
 | 
			
		||||
 * |---------------------------------------------------------------|
 | 
			
		||||
 *      |RGB-|RGB |RGB+|         |             |    |    |    |
 | 
			
		||||
 *      `-----------------------------------------------------'
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
	[_ADJUST] = LAYOUT(
 | 
			
		||||
		EEP_RST, RESET,   KC_NO,   KC_NO,   KC_NO,   KC_NO,   KC_NO,   KC_NO,   KC_NO,   KC_NO,   KC_NO,   KC_NO,
 | 
			
		||||
		KC_NO,   KC_NO,   KC_NO,   KC_NO,   KC_NO,   KC_NO,   KC_NO,   KC_NO,   KC_NO,   KC_NO,   KC_NO,   KC_NO,
 | 
			
		||||
		KC_NO,   KC_NO,   KC_NO,   KC_NO,   KC_NO,   KC_NO,   KC_NO,   KC_NO,   KC_NO,   KC_NO,   KC_NO,
 | 
			
		||||
		RGB_VAD, RGB_TOG, RGB_VAI, KC_NO,   KC_NO,   KC_NO,   KC_NO,   KC_NO
 | 
			
		||||
	),
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
void led_set_user(uint8_t usb_led) {
 | 
			
		||||
if (IS_LED_ON(usb_led, USB_LED_CAPS_LOCK)) {
 | 
			
		||||
	dimple_led_on();
 | 
			
		||||
	} else {
 | 
			
		||||
	dimple_led_off();
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
uint32_t layer_state_set_user(uint32_t state) {
 | 
			
		||||
	state = update_tri_layer_state(state, _LOWER, _RAISE, _ADJUST);
 | 
			
		||||
	switch (biton32(state)) {
 | 
			
		||||
		case _LOWER:
 | 
			
		||||
			rgblight_sethsv_noeeprom(HSV_GREEN);
 | 
			
		||||
			break;
 | 
			
		||||
		case _RAISE:
 | 
			
		||||
			rgblight_sethsv_noeeprom(HSV_GOLD);
 | 
			
		||||
			break;
 | 
			
		||||
		case _ADJUST:
 | 
			
		||||
			rgblight_sethsv_noeeprom(HSV_RED);
 | 
			
		||||
			break;
 | 
			
		||||
		default:
 | 
			
		||||
			rgblight_sethsv_noeeprom(HSV_WHITE);
 | 
			
		||||
			break;
 | 
			
		||||
	}
 | 
			
		||||
	return state;
 | 
			
		||||
}
 | 
			
		||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue