Compare commits
23 Commits
0.6.216
...
clockworkp
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
50fa02ad58 | ||
|
|
e76bf17d36 | ||
|
|
6cb2d7ba6d | ||
|
|
526bc4c7cc | ||
|
|
484c85bd0d | ||
|
|
a7b1b146d1 | ||
|
|
7b5fa4b13e | ||
|
|
c71c078dff | ||
|
|
134a69f4ad | ||
|
|
40383089d0 | ||
|
|
7f0def77a2 | ||
|
|
b7688590b8 | ||
|
|
0c0e208a36 | ||
|
|
3ddec14eb8 | ||
|
|
46b4b4407f | ||
|
|
c2390bf321 | ||
|
|
c043edd138 | ||
|
|
cc7bf108a9 | ||
|
|
bb1b441325 | ||
|
|
e2f60eba2f | ||
|
|
8443481aea | ||
|
|
d9abb833e5 | ||
|
|
2c6c483096 |
@@ -21,5 +21,4 @@ COMMON_VPATH += $(QUANTUM_PATH)/keymap_extras
|
|||||||
COMMON_VPATH += $(QUANTUM_PATH)/audio
|
COMMON_VPATH += $(QUANTUM_PATH)/audio
|
||||||
COMMON_VPATH += $(QUANTUM_PATH)/process_keycode
|
COMMON_VPATH += $(QUANTUM_PATH)/process_keycode
|
||||||
COMMON_VPATH += $(QUANTUM_PATH)/api
|
COMMON_VPATH += $(QUANTUM_PATH)/api
|
||||||
COMMON_VPATH += $(QUANTUM_PATH)/split_common
|
|
||||||
COMMON_VPATH += $(DRIVER_PATH)
|
COMMON_VPATH += $(DRIVER_PATH)
|
||||||
|
|||||||
@@ -268,4 +268,5 @@ ifeq ($(strip $(SPLIT_KEYBOARD)), yes)
|
|||||||
$(QUANTUM_DIR)/split_common/split_util.c
|
$(QUANTUM_DIR)/split_common/split_util.c
|
||||||
QUANTUM_LIB_SRC += $(QUANTUM_DIR)/split_common/i2c.c
|
QUANTUM_LIB_SRC += $(QUANTUM_DIR)/split_common/i2c.c
|
||||||
QUANTUM_LIB_SRC += $(QUANTUM_DIR)/split_common/serial.c
|
QUANTUM_LIB_SRC += $(QUANTUM_DIR)/split_common/serial.c
|
||||||
|
COMMON_VPATH += $(QUANTUM_PATH)/split_common
|
||||||
endif
|
endif
|
||||||
|
|||||||
0
keyboards/clockworkpi_keypad/clockworkpi_keypad.c
Normal file
0
keyboards/clockworkpi_keypad/clockworkpi_keypad.c
Normal file
15
keyboards/clockworkpi_keypad/clockworkpi_keypad.h
Normal file
15
keyboards/clockworkpi_keypad/clockworkpi_keypad.h
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
|
||||||
|
|
||||||
|
#define k_ KC_NO
|
||||||
|
|
||||||
|
#define LAYOUT_keymap( \
|
||||||
|
kMN, kSH, kSL, kST, \
|
||||||
|
kUP, KY, \
|
||||||
|
kLF, kRH, kX, kB, \
|
||||||
|
kDN, kA, \
|
||||||
|
kL1, kL2, kL3, kL4, kL5 \
|
||||||
|
) { \
|
||||||
|
{ kUP, kLF, kDN, kRH, kY, kX, kA, kB }, \
|
||||||
|
{ kMN, kSH, kSL, kST, k_, k_, k_, k_ }, \
|
||||||
|
{ kL1, kL2, kL3, kL4, kL5, k_, k_, k_ }, \
|
||||||
|
}
|
||||||
38
keyboards/clockworkpi_keypad/config.h
Normal file
38
keyboards/clockworkpi_keypad/config.h
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
/*
|
||||||
|
Copyright 2019 Jack Humbert <jack.humb@gmail.com>
|
||||||
|
|
||||||
|
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/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
/* USB Device descriptor parameter */
|
||||||
|
#define VENDOR_ID 0xFEED
|
||||||
|
#define PRODUCT_ID 0xD901
|
||||||
|
#define DEVICE_VER 0x0001
|
||||||
|
#define MANUFACTURER clockworkpi
|
||||||
|
#define PRODUCT keypad
|
||||||
|
#define DESCRIPTION
|
||||||
|
|
||||||
|
#define MATRIX_ROWS 3
|
||||||
|
#define MATRIX_COLS 8
|
||||||
|
|
||||||
|
#define TAPPING_TOGGLE 3
|
||||||
|
|
||||||
|
#define NO_UART 1
|
||||||
|
|
||||||
|
/* key combination for command */
|
||||||
|
#define IS_COMMAND() ( \
|
||||||
|
keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)) \
|
||||||
|
)
|
||||||
20
keyboards/clockworkpi_keypad/keymaps/default/keymap.c
Normal file
20
keyboards/clockworkpi_keypad/keymaps/default/keymap.c
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
|
||||||
|
[0] = LAYOUT_keypad(
|
||||||
|
KC_ESC, MO(1), KC_SPC, KC_ENT,
|
||||||
|
|
||||||
|
KC_UP KC_I,
|
||||||
|
KC_LEFT, KC_RIGHT, KC_U, KC_K,
|
||||||
|
KC_DOWN, KC_J,
|
||||||
|
|
||||||
|
KC_HOME, KC_PGUP, MO(1), KC_PGDN, KC_END
|
||||||
|
),
|
||||||
|
|
||||||
|
[1] = LAYOUT_keypad(
|
||||||
|
KC_BSPC, MO(1), KC_PMNS, KC_PPLS,
|
||||||
|
|
||||||
|
KC_UP KC_O,
|
||||||
|
KC_LEFT, KC_RIGHT, KC_Y, KC_L,
|
||||||
|
KC_DOWN, KC_H
|
||||||
|
|
||||||
|
KC_H, KC_Y, MO(1), KC_O, KC_L
|
||||||
|
)
|
||||||
65
keyboards/clockworkpi_keypad/matrix.c
Normal file
65
keyboards/clockworkpi_keypad/matrix.c
Normal file
@@ -0,0 +1,65 @@
|
|||||||
|
// 0 DO
|
||||||
|
// 1 D1
|
||||||
|
// 2 D2
|
||||||
|
// 3 D3
|
||||||
|
// 4 D4
|
||||||
|
// 5 D5
|
||||||
|
// 6 D6
|
||||||
|
// 7 D7
|
||||||
|
// 8 B0
|
||||||
|
// 9 B1
|
||||||
|
// 10 B2
|
||||||
|
// 11 B3
|
||||||
|
// 12 B4
|
||||||
|
// 13 B5
|
||||||
|
// 14 C0
|
||||||
|
// 15 C1
|
||||||
|
// 16 C2
|
||||||
|
// 17 C3
|
||||||
|
// 18 C4
|
||||||
|
// 19 C5
|
||||||
|
|
||||||
|
// UP D3
|
||||||
|
// LF D6
|
||||||
|
// DN D7
|
||||||
|
// RH B0
|
||||||
|
|
||||||
|
// A B1 Y
|
||||||
|
// B B2 X
|
||||||
|
// C B3 A
|
||||||
|
// D B4 B
|
||||||
|
|
||||||
|
// MN C0
|
||||||
|
// SH C1
|
||||||
|
// SL C2
|
||||||
|
// ST B5
|
||||||
|
|
||||||
|
// L1 C3
|
||||||
|
// L2 C4
|
||||||
|
// L3 C5
|
||||||
|
// L4 C6
|
||||||
|
// L5 D7
|
||||||
|
|
||||||
|
matrix[0] = (
|
||||||
|
(readPin(D3) << 0) |
|
||||||
|
(readPin(D6) << 1) |
|
||||||
|
(readPin(D7) << 2) |
|
||||||
|
(readPin(B0) << 3) |
|
||||||
|
(readPin(B1) << 4) |
|
||||||
|
(readPin(B2) << 5) |
|
||||||
|
(readPin(B3) << 6) |
|
||||||
|
(readPin(B4) << 7)
|
||||||
|
);
|
||||||
|
matrix[1] = (
|
||||||
|
(readPin(C0) << 0) |
|
||||||
|
(readPin(C1) << 1) |
|
||||||
|
(readPin(C2) << 2) |
|
||||||
|
(readPin(B5) << 3)
|
||||||
|
);
|
||||||
|
matrix[2] = (
|
||||||
|
(readPin(C3) << 0) |
|
||||||
|
(readPin(C4) << 1) |
|
||||||
|
(readPin(C5) << 2) |
|
||||||
|
(readPin(C6) << 3) |
|
||||||
|
(readPin(D7) << 4)
|
||||||
|
);
|
||||||
52
keyboards/clockworkpi_keypad/rules.mk
Normal file
52
keyboards/clockworkpi_keypad/rules.mk
Normal file
@@ -0,0 +1,52 @@
|
|||||||
|
# Copyright 2019 Jack Humbert <jack.humb@gmail.com>
|
||||||
|
#
|
||||||
|
# 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/>.
|
||||||
|
|
||||||
|
# MCU name
|
||||||
|
MCU = atmega328p
|
||||||
|
PROTOCOL = VUSB
|
||||||
|
|
||||||
|
# unsupported features for now
|
||||||
|
NO_UART = yes
|
||||||
|
NO_SUSPEND_POWER_DOWN = yes
|
||||||
|
|
||||||
|
# processor frequency
|
||||||
|
F_CPU = 16000000
|
||||||
|
|
||||||
|
# Bootloader
|
||||||
|
# This definition is optional, and if your keyboard supports multiple bootloaders of
|
||||||
|
# different sizes, comment this out, and the correct address will be loaded
|
||||||
|
# automatically (+60). See bootloader.mk for all options.
|
||||||
|
# BOOTLOADER = usbasp
|
||||||
|
PROGRAM_CMD = avrdude -c usbasp -p m328p -U flash:w:$(BUILD_DIR)/$(TARGET).hex
|
||||||
|
|
||||||
|
# build options
|
||||||
|
BOOTMAGIC_ENABLE = no
|
||||||
|
MOUSEKEY_ENABLE = yes
|
||||||
|
EXTRAKEY_ENABLE = yes
|
||||||
|
CONSOLE_ENABLE = no
|
||||||
|
COMMAND_ENABLE = yes
|
||||||
|
KEY_LOCK_ENABLE = no
|
||||||
|
NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
|
||||||
|
AUDIO_ENABLE = no
|
||||||
|
|
||||||
|
# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
|
||||||
|
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
||||||
|
|
||||||
|
OPT_DEFS = -DDEBUG_LEVEL=0
|
||||||
|
OPT_DEFS += -DBOOTLOADER_SIZE=2048
|
||||||
|
|
||||||
|
# custom matrix setup
|
||||||
|
CUSTOM_MATRIX = yes
|
||||||
|
SRC = matrix.c
|
||||||
@@ -4,19 +4,11 @@ void uart_init(void) {
|
|||||||
SERIAL_UART_INIT();
|
SERIAL_UART_INIT();
|
||||||
}
|
}
|
||||||
|
|
||||||
void led_init(void) {
|
|
||||||
DDRD |= (1<<1);
|
|
||||||
PORTD |= (1<<1);
|
|
||||||
DDRF |= (1<<4) | (1<<5);
|
|
||||||
PORTF |= (1<<4) | (1<<5);
|
|
||||||
}
|
|
||||||
|
|
||||||
void matrix_init_kb(void) {
|
void matrix_init_kb(void) {
|
||||||
// put your keyboard start-up code here
|
// put your keyboard start-up code here
|
||||||
// runs once when the firmware starts up
|
// runs once when the firmware starts up
|
||||||
matrix_init_user();
|
matrix_init_user();
|
||||||
uart_init();
|
uart_init();
|
||||||
led_init();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void matrix_scan_kb(void) {
|
void matrix_scan_kb(void) {
|
||||||
|
|||||||
@@ -6,46 +6,6 @@
|
|||||||
#include "backlight.h"
|
#include "backlight.h"
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
|
|
||||||
#define red_led_off PORTF |= (1<<5)
|
|
||||||
#define red_led_on PORTF &= ~(1<<5)
|
|
||||||
#define blu_led_off PORTF |= (1<<4)
|
|
||||||
#define blu_led_on PORTF &= ~(1<<4)
|
|
||||||
#define grn_led_off PORTD |= (1<<1)
|
|
||||||
#define grn_led_on PORTD &= ~(1<<1)
|
|
||||||
|
|
||||||
#define set_led_off red_led_off; grn_led_off; blu_led_off
|
|
||||||
#define set_led_red red_led_on; grn_led_off; blu_led_off
|
|
||||||
#define set_led_blue red_led_off; grn_led_off; blu_led_on
|
|
||||||
#define set_led_green red_led_off; grn_led_on; blu_led_off
|
|
||||||
#define set_led_yellow red_led_on; grn_led_on; blu_led_off
|
|
||||||
#define set_led_magenta red_led_on; grn_led_off; blu_led_on
|
|
||||||
#define set_led_cyan red_led_off; grn_led_on; blu_led_on
|
|
||||||
#define set_led_white red_led_on; grn_led_on; blu_led_on
|
|
||||||
|
|
||||||
/*
|
|
||||||
#define LED_B 5
|
|
||||||
#define LED_R 6
|
|
||||||
#define LED_G 7
|
|
||||||
|
|
||||||
#define all_leds_off PORTF &= ~(1<<LED_B) & ~(1<<LED_R) & ~(1<<LED_G)
|
|
||||||
|
|
||||||
#define red_led_on PORTF |= (1<<LED_R)
|
|
||||||
#define red_led_off PORTF &= ~(1<<LED_R)
|
|
||||||
#define grn_led_on PORTF |= (1<<LED_G)
|
|
||||||
#define grn_led_off PORTF &= ~(1<<LED_G)
|
|
||||||
#define blu_led_on PORTF |= (1<<LED_B)
|
|
||||||
#define blu_led_off PORTF &= ~(1<<LED_B)
|
|
||||||
|
|
||||||
#define set_led_off PORTF &= ~(1<<LED_B) & ~(1<<LED_R) & ~(1<<LED_G)
|
|
||||||
#define set_led_red PORTF = PORTF & ~(1<<LED_B) & ~(1<<LED_G) | (1<<LED_R)
|
|
||||||
#define set_led_blue PORTF = PORTF & ~(1<<LED_G) & ~(1<<LED_R) | (1<<LED_B)
|
|
||||||
#define set_led_green PORTF = PORTF & ~(1<<LED_B) & ~(1<<LED_R) | (1<<LED_G)
|
|
||||||
#define set_led_yellow PORTF = PORTF & ~(1<<LED_B) | (1<<LED_R) | (1<<LED_G)
|
|
||||||
#define set_led_magenta PORTF = PORTF & ~(1<<LED_G) | (1<<LED_R) | (1<<LED_B)
|
|
||||||
#define set_led_cyan PORTF = PORTF & ~(1<<LED_R) | (1<<LED_B) | (1<<LED_G)
|
|
||||||
#define set_led_white PORTF |= (1<<LED_B) | (1<<LED_R) | (1<<LED_G)
|
|
||||||
*/
|
|
||||||
|
|
||||||
// This a shortcut to help you visually see your layout.
|
// This a shortcut to help you visually see your layout.
|
||||||
// The first section contains all of the arguements
|
// The first section contains all of the arguements
|
||||||
// The second converts the arguments into a two-dimensional array
|
// The second converts the arguments into a two-dimensional array
|
||||||
|
|||||||
@@ -41,12 +41,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||||||
|
|
||||||
#define ONESHOT_TIMEOUT 500
|
#define ONESHOT_TIMEOUT 500
|
||||||
|
|
||||||
|
|
||||||
/* key combination for command */
|
|
||||||
#define IS_COMMAND() ( \
|
|
||||||
keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)) \
|
|
||||||
)
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Feature disable options
|
* Feature disable options
|
||||||
* These options are also useful to firmware size reduction.
|
* These options are also useful to firmware size reduction.
|
||||||
@@ -65,6 +59,12 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||||||
//#define NO_ACTION_MACRO
|
//#define NO_ACTION_MACRO
|
||||||
//#define NO_ACTION_FUNCTION
|
//#define NO_ACTION_FUNCTION
|
||||||
|
|
||||||
|
// Define masks for modifiers
|
||||||
|
#define MODS_SHIFT_MASK (MOD_BIT(KC_LSHIFT)|MOD_BIT(KC_RSHIFT))
|
||||||
|
#define MODS_CTRL_MASK (MOD_BIT(KC_LCTL)|MOD_BIT(KC_RCTRL))
|
||||||
|
#define MODS_ALT_MASK (MOD_BIT(KC_LALT)|MOD_BIT(KC_RALT))
|
||||||
|
#define MODS_GUI_MASK (MOD_BIT(KC_LGUI)|MOD_BIT(KC_RGUI))
|
||||||
|
|
||||||
//UART settings for communication with the RF microcontroller
|
//UART settings for communication with the RF microcontroller
|
||||||
#define SERIAL_UART_BAUD 1000000
|
#define SERIAL_UART_BAUD 1000000
|
||||||
#define SERIAL_UART_DATA UDR1
|
#define SERIAL_UART_DATA UDR1
|
||||||
|
|||||||
162
keyboards/comet46/i2c.c
Normal file
162
keyboards/comet46/i2c.c
Normal file
@@ -0,0 +1,162 @@
|
|||||||
|
#include <util/twi.h>
|
||||||
|
#include <avr/io.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <avr/interrupt.h>
|
||||||
|
#include <util/twi.h>
|
||||||
|
#include <stdbool.h>
|
||||||
|
#include "i2c.h"
|
||||||
|
|
||||||
|
#ifdef USE_I2C
|
||||||
|
|
||||||
|
// Limits the amount of we wait for any one i2c transaction.
|
||||||
|
// Since were running SCL line 100kHz (=> 10μs/bit), and each transactions is
|
||||||
|
// 9 bits, a single transaction will take around 90μs to complete.
|
||||||
|
//
|
||||||
|
// (F_CPU/SCL_CLOCK) => # of μC cycles to transfer a bit
|
||||||
|
// poll loop takes at least 8 clock cycles to execute
|
||||||
|
#define I2C_LOOP_TIMEOUT (9+1)*(F_CPU/SCL_CLOCK)/8
|
||||||
|
|
||||||
|
#define BUFFER_POS_INC() (slave_buffer_pos = (slave_buffer_pos+1)%SLAVE_BUFFER_SIZE)
|
||||||
|
|
||||||
|
volatile uint8_t i2c_slave_buffer[SLAVE_BUFFER_SIZE];
|
||||||
|
|
||||||
|
static volatile uint8_t slave_buffer_pos;
|
||||||
|
static volatile bool slave_has_register_set = false;
|
||||||
|
|
||||||
|
// Wait for an i2c operation to finish
|
||||||
|
inline static
|
||||||
|
void i2c_delay(void) {
|
||||||
|
uint16_t lim = 0;
|
||||||
|
while(!(TWCR & (1<<TWINT)) && lim < I2C_LOOP_TIMEOUT)
|
||||||
|
lim++;
|
||||||
|
|
||||||
|
// easier way, but will wait slightly longer
|
||||||
|
// _delay_us(100);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Setup twi to run at 100kHz or 400kHz (see ./i2c.h SCL_CLOCK)
|
||||||
|
void i2c_master_init(void) {
|
||||||
|
// no prescaler
|
||||||
|
TWSR = 0;
|
||||||
|
// Set TWI clock frequency to SCL_CLOCK. Need TWBR>10.
|
||||||
|
// Check datasheets for more info.
|
||||||
|
TWBR = ((F_CPU/SCL_CLOCK)-16)/2;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Start a transaction with the given i2c slave address. The direction of the
|
||||||
|
// transfer is set with I2C_READ and I2C_WRITE.
|
||||||
|
// returns: 0 => success
|
||||||
|
// 1 => error
|
||||||
|
uint8_t i2c_master_start(uint8_t address) {
|
||||||
|
TWCR = (1<<TWINT) | (1<<TWEN) | (1<<TWSTA);
|
||||||
|
|
||||||
|
i2c_delay();
|
||||||
|
|
||||||
|
// check that we started successfully
|
||||||
|
if ( (TW_STATUS != TW_START) && (TW_STATUS != TW_REP_START))
|
||||||
|
return 1;
|
||||||
|
|
||||||
|
TWDR = address;
|
||||||
|
TWCR = (1<<TWINT) | (1<<TWEN);
|
||||||
|
|
||||||
|
i2c_delay();
|
||||||
|
|
||||||
|
if ( (TW_STATUS != TW_MT_SLA_ACK) && (TW_STATUS != TW_MR_SLA_ACK) )
|
||||||
|
return 1; // slave did not acknowledge
|
||||||
|
else
|
||||||
|
return 0; // success
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Finish the i2c transaction.
|
||||||
|
void i2c_master_stop(void) {
|
||||||
|
TWCR = (1<<TWINT) | (1<<TWEN) | (1<<TWSTO);
|
||||||
|
|
||||||
|
uint16_t lim = 0;
|
||||||
|
while(!(TWCR & (1<<TWSTO)) && lim < I2C_LOOP_TIMEOUT)
|
||||||
|
lim++;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Write one byte to the i2c slave.
|
||||||
|
// returns 0 => slave ACK
|
||||||
|
// 1 => slave NACK
|
||||||
|
uint8_t i2c_master_write(uint8_t data) {
|
||||||
|
TWDR = data;
|
||||||
|
TWCR = (1<<TWINT) | (1<<TWEN);
|
||||||
|
|
||||||
|
i2c_delay();
|
||||||
|
|
||||||
|
// check if the slave acknowledged us
|
||||||
|
return (TW_STATUS == TW_MT_DATA_ACK) ? 0 : 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Read one byte from the i2c slave. If ack=1 the slave is acknowledged,
|
||||||
|
// if ack=0 the acknowledge bit is not set.
|
||||||
|
// returns: byte read from i2c device
|
||||||
|
uint8_t i2c_master_read(int ack) {
|
||||||
|
TWCR = (1<<TWINT) | (1<<TWEN) | (ack<<TWEA);
|
||||||
|
|
||||||
|
i2c_delay();
|
||||||
|
return TWDR;
|
||||||
|
}
|
||||||
|
|
||||||
|
void i2c_reset_state(void) {
|
||||||
|
TWCR = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
void i2c_slave_init(uint8_t address) {
|
||||||
|
TWAR = address << 0; // slave i2c address
|
||||||
|
// TWEN - twi enable
|
||||||
|
// TWEA - enable address acknowledgement
|
||||||
|
// TWINT - twi interrupt flag
|
||||||
|
// TWIE - enable the twi interrupt
|
||||||
|
TWCR = (1<<TWIE) | (1<<TWEA) | (1<<TWINT) | (1<<TWEN);
|
||||||
|
}
|
||||||
|
|
||||||
|
ISR(TWI_vect);
|
||||||
|
|
||||||
|
ISR(TWI_vect) {
|
||||||
|
uint8_t ack = 1;
|
||||||
|
switch(TW_STATUS) {
|
||||||
|
case TW_SR_SLA_ACK:
|
||||||
|
// this device has been addressed as a slave receiver
|
||||||
|
slave_has_register_set = false;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case TW_SR_DATA_ACK:
|
||||||
|
// this device has received data as a slave receiver
|
||||||
|
// The first byte that we receive in this transaction sets the location
|
||||||
|
// of the read/write location of the slaves memory that it exposes over
|
||||||
|
// i2c. After that, bytes will be written at slave_buffer_pos, incrementing
|
||||||
|
// slave_buffer_pos after each write.
|
||||||
|
if(!slave_has_register_set) {
|
||||||
|
slave_buffer_pos = TWDR;
|
||||||
|
// don't acknowledge the master if this memory loctaion is out of bounds
|
||||||
|
if ( slave_buffer_pos >= SLAVE_BUFFER_SIZE ) {
|
||||||
|
ack = 0;
|
||||||
|
slave_buffer_pos = 0;
|
||||||
|
}
|
||||||
|
slave_has_register_set = true;
|
||||||
|
} else {
|
||||||
|
i2c_slave_buffer[slave_buffer_pos] = TWDR;
|
||||||
|
BUFFER_POS_INC();
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case TW_ST_SLA_ACK:
|
||||||
|
case TW_ST_DATA_ACK:
|
||||||
|
// master has addressed this device as a slave transmitter and is
|
||||||
|
// requesting data.
|
||||||
|
TWDR = i2c_slave_buffer[slave_buffer_pos];
|
||||||
|
BUFFER_POS_INC();
|
||||||
|
break;
|
||||||
|
|
||||||
|
case TW_BUS_ERROR: // something went wrong, reset twi state
|
||||||
|
TWCR = 0;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
// Reset everything, so we are ready for the next TWI interrupt
|
||||||
|
TWCR |= (1<<TWIE) | (1<<TWINT) | (ack<<TWEA) | (1<<TWEN);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
49
keyboards/comet46/i2c.h
Normal file
49
keyboards/comet46/i2c.h
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
#ifndef I2C_H
|
||||||
|
#define I2C_H
|
||||||
|
|
||||||
|
#include <stdint.h>
|
||||||
|
|
||||||
|
#ifndef F_CPU
|
||||||
|
#define F_CPU 16000000UL
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define I2C_READ 1
|
||||||
|
#define I2C_WRITE 0
|
||||||
|
|
||||||
|
#define I2C_ACK 1
|
||||||
|
#define I2C_NACK 0
|
||||||
|
|
||||||
|
#define SLAVE_BUFFER_SIZE 0x10
|
||||||
|
|
||||||
|
// i2c SCL clock frequency 400kHz
|
||||||
|
#define SCL_CLOCK 400000L
|
||||||
|
|
||||||
|
extern volatile uint8_t i2c_slave_buffer[SLAVE_BUFFER_SIZE];
|
||||||
|
|
||||||
|
void i2c_master_init(void);
|
||||||
|
uint8_t i2c_master_start(uint8_t address);
|
||||||
|
void i2c_master_stop(void);
|
||||||
|
uint8_t i2c_master_write(uint8_t data);
|
||||||
|
uint8_t i2c_master_read(int);
|
||||||
|
void i2c_reset_state(void);
|
||||||
|
void i2c_slave_init(uint8_t address);
|
||||||
|
|
||||||
|
|
||||||
|
static inline unsigned char i2c_start_read(unsigned char addr) {
|
||||||
|
return i2c_master_start((addr << 1) | I2C_READ);
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline unsigned char i2c_start_write(unsigned char addr) {
|
||||||
|
return i2c_master_start((addr << 1) | I2C_WRITE);
|
||||||
|
}
|
||||||
|
|
||||||
|
// from SSD1306 scrips
|
||||||
|
extern unsigned char i2c_rep_start(unsigned char addr);
|
||||||
|
extern void i2c_start_wait(unsigned char addr);
|
||||||
|
extern unsigned char i2c_readAck(void);
|
||||||
|
extern unsigned char i2c_readNak(void);
|
||||||
|
extern unsigned char i2c_read(unsigned char ack);
|
||||||
|
|
||||||
|
#define i2c_read(ack) (ack) ? i2c_readAck() : i2c_readNak();
|
||||||
|
|
||||||
|
#endif
|
||||||
226
keyboards/comet46/keymaps/default-rgbled/keymap.c
Normal file
226
keyboards/comet46/keymaps/default-rgbled/keymap.c
Normal file
@@ -0,0 +1,226 @@
|
|||||||
|
// this is the style you want to emulate.
|
||||||
|
// This is the canonical layout file for the Quantum project. If you want to add another keyboard,
|
||||||
|
|
||||||
|
#include QMK_KEYBOARD_H
|
||||||
|
|
||||||
|
// Each layer gets a name for readability, which is then used in the keymap matrix below.
|
||||||
|
// The underscores don't mean anything - you can have a layer called STUFF or any other name.
|
||||||
|
// Layer names don't all need to be of the same length, obviously, and you can also skip them
|
||||||
|
// entirely and just use numbers.
|
||||||
|
enum comet46_layers
|
||||||
|
{
|
||||||
|
_QWERTY,
|
||||||
|
_COLEMAK,
|
||||||
|
_DVORAK,
|
||||||
|
_LOWER,
|
||||||
|
_RAISE,
|
||||||
|
_ADJUST,
|
||||||
|
};
|
||||||
|
|
||||||
|
enum custom_keycodes {
|
||||||
|
QWERTY = SAFE_RANGE,
|
||||||
|
COLEMAK,
|
||||||
|
DVORAK,
|
||||||
|
LOWER,
|
||||||
|
RAISE,
|
||||||
|
};
|
||||||
|
|
||||||
|
// Fillers to make layering more clear
|
||||||
|
#define _______ KC_TRNS
|
||||||
|
#define XXXXXXX KC_NO
|
||||||
|
#define LOWER MO(_LOWER)
|
||||||
|
#define RAISE MO(_RAISE)
|
||||||
|
|
||||||
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||||
|
|
||||||
|
/* Qwerty
|
||||||
|
* ,-----------------------------------------+ +-----------------------------------------.
|
||||||
|
* | Tab | Q | W | E | R | T | | Y | U | I | O | P | Bksp |
|
||||||
|
* |------+------+------+------+------+------+------+ +------+------+------+------+------+------+------|
|
||||||
|
* | Ctl | A | S | D | F | G | Esc | | Del | H | J | K | L | ; | " |
|
||||||
|
* |------+------+------+------+------+------+------+ +------+------+------+------+------+------+------|
|
||||||
|
* | Shift| Z | X | C | V | B | { | | } | N | M | , | . | / | Shift|
|
||||||
|
* |------+------+------+------+------+------+------+ +------+------+------+------+------+-------------|
|
||||||
|
* | GUI | Lower| Space| | Enter| Raise| Alt |
|
||||||
|
* +--------------------/ \--------------------+
|
||||||
|
*/
|
||||||
|
[_QWERTY] = LAYOUT(
|
||||||
|
KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC,
|
||||||
|
KC_LCTL, KC_A, KC_S, KC_D, KC_F, KC_G, KC_ESC, KC_DEL, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
|
||||||
|
KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_LCBR, KC_RCBR, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT,
|
||||||
|
KC_LGUI, LOWER, KC_SPC, KC_ENT, RAISE, KC_LALT
|
||||||
|
),
|
||||||
|
|
||||||
|
/* Colemak
|
||||||
|
* ,-----------------------------------------+ +-----------------------------------------.
|
||||||
|
* | Tab | Q | W | F | P | G | | J | L | U | Y | ; | Bksp |
|
||||||
|
* |------+------+------+------+------+------+------+ +------+------+------+------+------+------+------|
|
||||||
|
* | Ctl | A | R | S | T | D | Esc | | Del | H | N | E | I | O | " |
|
||||||
|
* |------+------+------+------+------+------+------+ +------+------+------+------+------+------+------|
|
||||||
|
* | Shift| Z | X | C | V | B | { | | } | K | M | , | . | / | Shift|
|
||||||
|
* |------+------+------+------+------+------+------+ +------+------+------+------+------+-------------|
|
||||||
|
* | GUI | Lower| Space| | Enter| Raise| Alt |
|
||||||
|
* +--------------------/ \--------------------+
|
||||||
|
*/
|
||||||
|
[_COLEMAK] = LAYOUT(
|
||||||
|
KC_TAB, KC_Q, KC_W, KC_F, KC_P, KC_G, KC_J, KC_L, KC_U, KC_Y, KC_SCLN, KC_BSPC,
|
||||||
|
KC_LCTL, KC_A, KC_R, KC_S, KC_T, KC_D, KC_ESC, KC_DEL, KC_H, KC_N, KC_E, KC_I, KC_O, KC_QUOT,
|
||||||
|
KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_LCBR, KC_RCBR, KC_K, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT,
|
||||||
|
KC_LGUI, LOWER, KC_SPC, KC_ENT, RAISE, KC_LALT
|
||||||
|
),
|
||||||
|
|
||||||
|
/* Dvorak
|
||||||
|
* ,-----------------------------------------+ +-----------------------------------------.
|
||||||
|
* | Tab | " | , | . | P | Y | | F | G | C | R | L | Bksp |
|
||||||
|
* |------+------+------+------+------+------+------+ +------+------+------+------+------+------+------|
|
||||||
|
* | Ctl | A | O | E | U | I | Esc | | Del | D | H | T | N | S | / |
|
||||||
|
* |------+------+------+------+------+------+------+ +------+------+------+------+------+------+------|
|
||||||
|
* | Shift| ; | Q | J | K | X | { | | } | B | M | W | V | Z | Shift|
|
||||||
|
* |------+------+------+------+------+------+------+ +------+------+------+------+------+-------------|
|
||||||
|
* | GUI | Lower| Space| | Enter| Raise| Alt |
|
||||||
|
* +--------------------/ \--------------------+
|
||||||
|
*/
|
||||||
|
[_DVORAK] = LAYOUT(
|
||||||
|
KC_TAB, KC_QUOT, KC_COMM, KC_DOT, KC_P, KC_Y, KC_F, KC_G, KC_C, KC_R, KC_L, KC_BSPC,
|
||||||
|
KC_LCTL, KC_A, KC_O, KC_E, KC_U, KC_I, KC_ESC, KC_DEL, KC_D, KC_H, KC_T, KC_N, KC_S, KC_SLSH,
|
||||||
|
KC_LSFT, KC_SCLN, KC_Q, KC_J, KC_K, KC_X, KC_LCBR, KC_RCBR, KC_B, KC_M, KC_W, KC_V, KC_Z, KC_RSFT,
|
||||||
|
KC_LGUI, LOWER, KC_SPC, KC_ENT, RAISE, KC_LALT
|
||||||
|
),
|
||||||
|
|
||||||
|
/* Lower
|
||||||
|
* ,-----------------------------------------+ +-----------------------------------------.
|
||||||
|
* | | ! | @ | # | $ | % | | ^ | & | * | ( | ) | |
|
||||||
|
* |------+------+------+------+------+------+------+ +------+------+------+------+------+------+------|
|
||||||
|
* | | | | | | | | | ` | \ | - | = | [ | ] | |
|
||||||
|
* |------+------+------+------+------+------+------+ +------+------+------+------+------+------+------|
|
||||||
|
* | | | | | | | | | ~ | | | _ | + | { | } | |
|
||||||
|
* |------+------+------+------+------+------+------+ +------+------+------+------+------+-------------|
|
||||||
|
* | | | | | | | |
|
||||||
|
* +--------------------/ \--------------------+
|
||||||
|
*/
|
||||||
|
[_LOWER] = LAYOUT(
|
||||||
|
_______, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, _______,
|
||||||
|
_______, _______, _______, _______, _______, _______, _______, KC_GRV, KC_BSLS, KC_MINS, KC_EQL, KC_LBRC, KC_RBRC, _______,
|
||||||
|
_______, _______, _______, _______, _______, _______, _______, KC_TILD, KC_PIPE, KC_UNDS, KC_PLUS, KC_LCBR, KC_RCBR, _______,
|
||||||
|
_______, _______, _______, _______, _______, _______
|
||||||
|
),
|
||||||
|
|
||||||
|
/* Raise
|
||||||
|
* ,-----------------------------------------+ +-----------------------------------------.
|
||||||
|
* | | 1 | 2 | 3 | 4 | 5 | | | | | | | |
|
||||||
|
* |------+------+------+------+------+------+------+ +------+------+------+------+------+------+------|
|
||||||
|
* | | F1 | F2 | F3 | F4 | F5 | F6 | | | Left | Down | Up |Right | End | |
|
||||||
|
* |------+------+------+------+------+------+------+ +------+------+------+------+------+------+------|
|
||||||
|
* | | F7 | F8 | F9 | F10 | F11 | F12 | | Home | | PgDn | PgUp | | | |
|
||||||
|
* |------+------+------+------+------+------+------+ +------+------+------+------+------+-------------|
|
||||||
|
* | | | | | | | |
|
||||||
|
* +--------------------/ \--------------------+
|
||||||
|
*/
|
||||||
|
[_RAISE] = LAYOUT(
|
||||||
|
_______, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, _______,
|
||||||
|
_______, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, XXXXXXX, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT, KC_END, _______,
|
||||||
|
_______, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_HOME, XXXXXXX, KC_PGDN, KC_PGUP, XXXXXXX, XXXXXXX, _______,
|
||||||
|
_______, _______, _______, _______, _______, _______
|
||||||
|
),
|
||||||
|
|
||||||
|
/* Adjust
|
||||||
|
* ,-----------------------------------------+ +-----------------------------------------.
|
||||||
|
* | | | | | | | | | | | | | |
|
||||||
|
* |------+------+------+------+------+------+------+ +------+------+------+------+------+------+------|
|
||||||
|
* | | | | | | |Qwerty| |Colemk| | | | | | |
|
||||||
|
* |------+------+------+------+------+------+------+ +------+------+------+------+------+------+------|
|
||||||
|
* | | | | | | |Reset | |Dvorak| | | | | | |
|
||||||
|
* |------+------+------+------+------+------+------+ +------+------+------+------+------+-------------|
|
||||||
|
* | | | | | | | |
|
||||||
|
* +--------------------/ \--------------------+
|
||||||
|
*/
|
||||||
|
[_ADJUST] = LAYOUT(
|
||||||
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
||||||
|
_______, _______, _______, _______, _______, _______, QWERTY, COLEMAK, _______, _______, _______, _______, _______, _______,
|
||||||
|
_______, _______, _______, _______, _______, _______, RESET, DVORAK, _______, _______, _______, _______, _______, _______,
|
||||||
|
_______, _______, _______, _______, _______, _______
|
||||||
|
)
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
uint32_t layer_state_set_user(uint32_t state) {
|
||||||
|
return update_tri_layer_state(state, _RAISE, _LOWER, _ADJUST);
|
||||||
|
}
|
||||||
|
|
||||||
|
// settings for LED on receiver
|
||||||
|
void led_init(void) {
|
||||||
|
DDRD |= (1<<1);
|
||||||
|
PORTD |= (1<<1);
|
||||||
|
DDRF |= (1<<4) | (1<<5);
|
||||||
|
PORTF |= (1<<4) | (1<<5);
|
||||||
|
}
|
||||||
|
|
||||||
|
#define red_led_off PORTF |= (1<<5)
|
||||||
|
#define red_led_on PORTF &= ~(1<<5)
|
||||||
|
#define blu_led_off PORTF |= (1<<4)
|
||||||
|
#define blu_led_on PORTF &= ~(1<<4)
|
||||||
|
#define grn_led_off PORTD |= (1<<1)
|
||||||
|
#define grn_led_on PORTD &= ~(1<<1)
|
||||||
|
|
||||||
|
#define set_led_off red_led_off; grn_led_off; blu_led_off
|
||||||
|
#define set_led_red red_led_on; grn_led_off; blu_led_off
|
||||||
|
#define set_led_blue red_led_off; grn_led_off; blu_led_on
|
||||||
|
#define set_led_green red_led_off; grn_led_on; blu_led_off
|
||||||
|
#define set_led_yellow red_led_on; grn_led_on; blu_led_off
|
||||||
|
#define set_led_magenta red_led_on; grn_led_off; blu_led_on
|
||||||
|
#define set_led_cyan red_led_off; grn_led_on; blu_led_on
|
||||||
|
#define set_led_white red_led_on; grn_led_on; blu_led_on
|
||||||
|
|
||||||
|
void matrix_init_user(void) {
|
||||||
|
led_init();
|
||||||
|
}
|
||||||
|
|
||||||
|
void matrix_scan_user(void) {
|
||||||
|
uint8_t layer = biton32(layer_state);
|
||||||
|
uint8_t default_layer = biton32(eeconfig_read_default_layer());
|
||||||
|
switch (layer) {
|
||||||
|
case _LOWER:
|
||||||
|
set_led_red;
|
||||||
|
break;
|
||||||
|
case _RAISE:
|
||||||
|
set_led_blue;
|
||||||
|
break;
|
||||||
|
case _ADJUST:
|
||||||
|
set_led_magenta;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
switch (default_layer) {
|
||||||
|
case _COLEMAK:
|
||||||
|
set_led_white;
|
||||||
|
break;
|
||||||
|
case _DVORAK:
|
||||||
|
set_led_yellow;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
set_led_green;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
||||||
|
switch (keycode) {
|
||||||
|
case QWERTY:
|
||||||
|
if (record->event.pressed) {
|
||||||
|
set_single_persistent_default_layer(_QWERTY);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case COLEMAK:
|
||||||
|
if (record->event.pressed) {
|
||||||
|
set_single_persistent_default_layer(_COLEMAK);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case DVORAK:
|
||||||
|
if (record->event.pressed) {
|
||||||
|
set_single_persistent_default_layer(_DVORAK);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
3
keyboards/comet46/keymaps/default-rgbled/readme.md
Normal file
3
keyboards/comet46/keymaps/default-rgbled/readme.md
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
## default-led
|
||||||
|
|
||||||
|
A keymap that is compatible with mitosis-type receivers, which use RGB LED for layer indication.
|
||||||
@@ -18,8 +18,14 @@ You should have received a copy of the GNU General Public License
|
|||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#pragma once
|
#ifndef CONFIG_USER_H
|
||||||
|
#define CONFIG_USER_H
|
||||||
|
|
||||||
|
// #include "../../config.h"
|
||||||
|
|
||||||
// place overrides here
|
/* Use I2C or Serial */
|
||||||
|
|
||||||
|
#define USE_I2C
|
||||||
|
#define SSD1306OLED
|
||||||
|
|
||||||
|
#endif
|
||||||
@@ -2,6 +2,10 @@
|
|||||||
// This is the canonical layout file for the Quantum project. If you want to add another keyboard,
|
// This is the canonical layout file for the Quantum project. If you want to add another keyboard,
|
||||||
|
|
||||||
#include QMK_KEYBOARD_H
|
#include QMK_KEYBOARD_H
|
||||||
|
#ifdef SSD1306OLED
|
||||||
|
#include "ssd1306.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
// Each layer gets a name for readability, which is then used in the keymap matrix below.
|
// Each layer gets a name for readability, which is then used in the keymap matrix below.
|
||||||
// The underscores don't mean anything - you can have a layer called STUFF or any other name.
|
// The underscores don't mean anything - you can have a layer called STUFF or any other name.
|
||||||
@@ -9,13 +13,18 @@
|
|||||||
// entirely and just use numbers.
|
// entirely and just use numbers.
|
||||||
enum comet46_layers
|
enum comet46_layers
|
||||||
{
|
{
|
||||||
_QWERTY,
|
_QWERTY,
|
||||||
_LOWER,
|
_COLEMAK,
|
||||||
_RAISE,
|
_DVORAK,
|
||||||
|
_LOWER,
|
||||||
|
_RAISE,
|
||||||
|
_ADJUST,
|
||||||
};
|
};
|
||||||
|
|
||||||
enum custom_keycodes {
|
enum custom_keycodes {
|
||||||
QWERTY = SAFE_RANGE,
|
QWERTY = SAFE_RANGE,
|
||||||
|
COLEMAK,
|
||||||
|
DVORAK,
|
||||||
LOWER,
|
LOWER,
|
||||||
RAISE,
|
RAISE,
|
||||||
};
|
};
|
||||||
@@ -46,6 +55,42 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|||||||
KC_LGUI, LOWER, KC_SPC, KC_ENT, RAISE, KC_LALT
|
KC_LGUI, LOWER, KC_SPC, KC_ENT, RAISE, KC_LALT
|
||||||
),
|
),
|
||||||
|
|
||||||
|
/* Colemak
|
||||||
|
* ,-----------------------------------------+ +-----------------------------------------.
|
||||||
|
* | Tab | Q | W | F | P | G | | J | L | U | Y | ; | Bksp |
|
||||||
|
* |------+------+------+------+------+------+------+ +------+------+------+------+------+------+------|
|
||||||
|
* | Ctl | A | R | S | T | D | Esc | | Del | H | N | E | I | O | " |
|
||||||
|
* |------+------+------+------+------+------+------+ +------+------+------+------+------+------+------|
|
||||||
|
* | Shift| Z | X | C | V | B | { | | } | K | M | , | . | / | Shift|
|
||||||
|
* |------+------+------+------+------+------+------+ +------+------+------+------+------+-------------|
|
||||||
|
* | GUI | Lower| Space| | Enter| Raise| Alt |
|
||||||
|
* +--------------------/ \--------------------+
|
||||||
|
*/
|
||||||
|
[_COLEMAK] = LAYOUT(
|
||||||
|
KC_TAB, KC_Q, KC_W, KC_F, KC_P, KC_G, KC_J, KC_L, KC_U, KC_Y, KC_SCLN, KC_BSPC,
|
||||||
|
KC_LCTL, KC_A, KC_R, KC_S, KC_T, KC_D, KC_ESC, KC_DEL, KC_H, KC_N, KC_E, KC_I, KC_O, KC_QUOT,
|
||||||
|
KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_LCBR, KC_RCBR, KC_K, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT,
|
||||||
|
KC_LGUI, LOWER, KC_SPC, KC_ENT, RAISE, KC_LALT
|
||||||
|
),
|
||||||
|
|
||||||
|
/* Dvorak
|
||||||
|
* ,-----------------------------------------+ +-----------------------------------------.
|
||||||
|
* | Tab | " | , | . | P | Y | | F | G | C | R | L | Bksp |
|
||||||
|
* |------+------+------+------+------+------+------+ +------+------+------+------+------+------+------|
|
||||||
|
* | Ctl | A | O | E | U | I | Esc | | Del | D | H | T | N | S | / |
|
||||||
|
* |------+------+------+------+------+------+------+ +------+------+------+------+------+------+------|
|
||||||
|
* | Shift| ; | Q | J | K | X | { | | } | B | M | W | V | Z | Shift|
|
||||||
|
* |------+------+------+------+------+------+------+ +------+------+------+------+------+-------------|
|
||||||
|
* | GUI | Lower| Space| | Enter| Raise| Alt |
|
||||||
|
* +--------------------/ \--------------------+
|
||||||
|
*/
|
||||||
|
[_DVORAK] = LAYOUT(
|
||||||
|
KC_TAB, KC_QUOT, KC_COMM, KC_DOT, KC_P, KC_Y, KC_F, KC_G, KC_C, KC_R, KC_L, KC_BSPC,
|
||||||
|
KC_LCTL, KC_A, KC_O, KC_E, KC_U, KC_I, KC_ESC, KC_DEL, KC_D, KC_H, KC_T, KC_N, KC_S, KC_SLSH,
|
||||||
|
KC_LSFT, KC_SCLN, KC_Q, KC_J, KC_K, KC_X, KC_LCBR, KC_RCBR, KC_B, KC_M, KC_W, KC_V, KC_Z, KC_RSFT,
|
||||||
|
KC_LGUI, LOWER, KC_SPC, KC_ENT, RAISE, KC_LALT
|
||||||
|
),
|
||||||
|
|
||||||
/* Lower
|
/* Lower
|
||||||
* ,-----------------------------------------+ +-----------------------------------------.
|
* ,-----------------------------------------+ +-----------------------------------------.
|
||||||
* | | ! | @ | # | $ | % | | ^ | & | * | ( | ) | |
|
* | | ! | @ | # | $ | % | | ^ | & | * | ( | ) | |
|
||||||
@@ -70,7 +115,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|||||||
* |------+------+------+------+------+------+------+ +------+------+------+------+------+------+------|
|
* |------+------+------+------+------+------+------+ +------+------+------+------+------+------+------|
|
||||||
* | | F1 | F2 | F3 | F4 | F5 | F6 | | | Left | Down | Up |Right | End | |
|
* | | F1 | F2 | F3 | F4 | F5 | F6 | | | Left | Down | Up |Right | End | |
|
||||||
* |------+------+------+------+------+------+------+ +------+------+------+------+------+------+------|
|
* |------+------+------+------+------+------+------+ +------+------+------+------+------+------+------|
|
||||||
* | | F7 | F8 | F9 | F10 | F11 | F12 | | Home | | | | | | |
|
* | | F7 | F8 | F9 | F10 | F11 | F12 | | Home | | PgDn | PgUp | | | |
|
||||||
* |------+------+------+------+------+------+------+ +------+------+------+------+------+-------------|
|
* |------+------+------+------+------+------+------+ +------+------+------+------+------+-------------|
|
||||||
* | | | | | | | |
|
* | | | | | | | |
|
||||||
* +--------------------/ \--------------------+
|
* +--------------------/ \--------------------+
|
||||||
@@ -78,26 +123,134 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|||||||
[_RAISE] = LAYOUT(
|
[_RAISE] = LAYOUT(
|
||||||
_______, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, _______,
|
_______, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, _______,
|
||||||
_______, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, XXXXXXX, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT, KC_END, _______,
|
_______, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, XXXXXXX, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT, KC_END, _______,
|
||||||
_______, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_HOME, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, _______,
|
_______, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_HOME, XXXXXXX, KC_PGDN, KC_PGUP, XXXXXXX, XXXXXXX, _______,
|
||||||
|
_______, _______, _______, _______, _______, _______
|
||||||
|
),
|
||||||
|
|
||||||
|
/* Adjust
|
||||||
|
* ,-----------------------------------------+ +-----------------------------------------.
|
||||||
|
* | | | | | | | | | | | | | |
|
||||||
|
* |------+------+------+------+------+------+------+ +------+------+------+------+------+------+------|
|
||||||
|
* | | | | | | |Qwerty| |Colemk| | | | | | |
|
||||||
|
* |------+------+------+------+------+------+------+ +------+------+------+------+------+------+------|
|
||||||
|
* | | | | | | |Reset | |Dvorak| | | | | | |
|
||||||
|
* |------+------+------+------+------+------+------+ +------+------+------+------+------+-------------|
|
||||||
|
* | | | | | | | |
|
||||||
|
* +--------------------/ \--------------------+
|
||||||
|
*/
|
||||||
|
[_ADJUST] = LAYOUT(
|
||||||
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
||||||
|
_______, _______, _______, _______, _______, _______, QWERTY, COLEMAK, _______, _______, _______, _______, _______, _______,
|
||||||
|
_______, _______, _______, _______, _______, _______, RESET, DVORAK, _______, _______, _______, _______, _______, _______,
|
||||||
_______, _______, _______, _______, _______, _______
|
_______, _______, _______, _______, _______, _______
|
||||||
)
|
)
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
void matrix_scan_user(void) {
|
uint32_t layer_state_set_user(uint32_t state) {
|
||||||
uint8_t layer = biton32(layer_state);
|
return update_tri_layer_state(state, _RAISE, _LOWER, _ADJUST);
|
||||||
switch (layer) {
|
}
|
||||||
case _QWERTY:
|
|
||||||
set_led_green;
|
//SSD1306 OLED update loop, make sure to add #define SSD1306OLED in config.h
|
||||||
break;
|
#ifdef SSD1306OLED
|
||||||
case _RAISE:
|
|
||||||
set_led_blue;
|
// You need to add source files to SRC in rules.mk when using OLED display functions
|
||||||
break;
|
void set_keylog(uint16_t keycode);
|
||||||
case _LOWER:
|
const char *read_keylog(void);
|
||||||
set_led_red;
|
const char *read_modifier_state(void);
|
||||||
break;
|
const char *read_host_led_state(void);
|
||||||
default:
|
|
||||||
set_led_green;
|
void matrix_init_user(void) {
|
||||||
break;
|
iota_gfx_init(false); // turns on the display
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void matrix_scan_user(void) {
|
||||||
|
iota_gfx_task(); // this is what updates the display continuously
|
||||||
|
}
|
||||||
|
|
||||||
|
void matrix_update(struct CharacterMatrix *dest, const struct CharacterMatrix *source) {
|
||||||
|
if (memcmp(dest->display, source->display, sizeof(dest->display))) {
|
||||||
|
memcpy(dest->display, source->display, sizeof(dest->display));
|
||||||
|
dest->dirty = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void render_status(struct CharacterMatrix *matrix) {
|
||||||
|
// Layer state
|
||||||
|
char layer_str[22];
|
||||||
|
matrix_write(matrix, "Layer: ");
|
||||||
|
uint8_t layer = biton32(layer_state);
|
||||||
|
uint8_t default_layer = biton32(eeconfig_read_default_layer());
|
||||||
|
switch (layer) {
|
||||||
|
case _QWERTY:
|
||||||
|
switch (default_layer) {
|
||||||
|
case _QWERTY:
|
||||||
|
snprintf(layer_str, sizeof(layer_str), "Qwerty");
|
||||||
|
break;
|
||||||
|
case _COLEMAK:
|
||||||
|
snprintf(layer_str, sizeof(layer_str), "Colemak");
|
||||||
|
break;
|
||||||
|
case _DVORAK:
|
||||||
|
snprintf(layer_str, sizeof(layer_str), "Dvorak");
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
snprintf(layer_str, sizeof(layer_str), "Undef-%d", default_layer);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case _RAISE:
|
||||||
|
snprintf(layer_str, sizeof(layer_str), "Raise");
|
||||||
|
break;
|
||||||
|
case _LOWER:
|
||||||
|
snprintf(layer_str, sizeof(layer_str), "Lower");
|
||||||
|
break;
|
||||||
|
case _ADJUST:
|
||||||
|
snprintf(layer_str, sizeof(layer_str), "Adjust");
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
snprintf(layer_str, sizeof(layer_str), "Undef-%d", layer);
|
||||||
|
}
|
||||||
|
matrix_write_ln(matrix, layer_str);
|
||||||
|
// Last entered keycode
|
||||||
|
matrix_write_ln(matrix, read_keylog());
|
||||||
|
// Modifier state
|
||||||
|
matrix_write_ln(matrix, read_modifier_state());
|
||||||
|
// Host Keyboard LED Status
|
||||||
|
matrix_write(matrix, read_host_led_state());
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void iota_gfx_task_user(void) {
|
||||||
|
struct CharacterMatrix matrix;
|
||||||
|
matrix_clear(&matrix);
|
||||||
|
render_status(&matrix);
|
||||||
|
matrix_update(&display, &matrix);
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif//SSD1306OLED
|
||||||
|
|
||||||
|
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
||||||
|
#ifdef SSD1306OLED
|
||||||
|
if (record->event.pressed) {
|
||||||
|
set_keylog(keycode);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
switch (keycode) {
|
||||||
|
case QWERTY:
|
||||||
|
if (record->event.pressed) {
|
||||||
|
set_single_persistent_default_layer(_QWERTY);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case COLEMAK:
|
||||||
|
if (record->event.pressed) {
|
||||||
|
set_single_persistent_default_layer(_COLEMAK);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case DVORAK:
|
||||||
|
if (record->event.pressed) {
|
||||||
|
set_single_persistent_default_layer(_DVORAK);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|||||||
3
keyboards/comet46/keymaps/default/readme.md
Normal file
3
keyboards/comet46/keymaps/default/readme.md
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
## default-oled-display
|
||||||
|
|
||||||
|
A keymap that is compatible with receivers with an OLED display.
|
||||||
5
keyboards/comet46/keymaps/default/rules.mk
Normal file
5
keyboards/comet46/keymaps/default/rules.mk
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# If you want to change display settings of the OLED, you need to change the following lines
|
||||||
|
SRC += ./lib/glcdfont.c \
|
||||||
|
./lib/keylogger.c \
|
||||||
|
./lib/modifier_state_reader.c \
|
||||||
|
./lib/host_led_state_reader.c
|
||||||
@@ -10,133 +10,133 @@ static uint8_t send_key_shift_bit[SHIFT_BIT_SIZE];
|
|||||||
* Memo: Using other layer keymap to get keycode
|
* Memo: Using other layer keymap to get keycode
|
||||||
*/
|
*/
|
||||||
void action_pseudo_lut(keyrecord_t *record, uint8_t base_keymap_id, const uint16_t (*keymap)[2]) {
|
void action_pseudo_lut(keyrecord_t *record, uint8_t base_keymap_id, const uint16_t (*keymap)[2]) {
|
||||||
uint8_t prev_shift;
|
uint8_t prev_shift;
|
||||||
uint16_t keycode;
|
uint16_t keycode;
|
||||||
uint16_t pseudo_keycode;
|
uint16_t pseudo_keycode;
|
||||||
|
|
||||||
/* get keycode from keymap you specified */
|
/* get keycode from keymap you specified */
|
||||||
keycode = keymap_key_to_keycode(base_keymap_id, record->event.key);
|
keycode = keymap_key_to_keycode(base_keymap_id, record->event.key);
|
||||||
|
|
||||||
prev_shift = keyboard_report->mods & (MOD_BIT(KC_LSFT) | MOD_BIT(KC_RSFT));
|
prev_shift = keyboard_report->mods & (MOD_BIT(KC_LSFT) | MOD_BIT(KC_RSFT));
|
||||||
|
|
||||||
if (record->event.pressed) {
|
if (record->event.pressed) {
|
||||||
/* when magic commands entered, keycode does not converted */
|
/* when magic commands entered, keycode does not converted */
|
||||||
if (IS_COMMAND()) {
|
if (IS_COMMAND()) {
|
||||||
if (prev_shift) {
|
if (prev_shift) {
|
||||||
add_shift_bit(keycode);
|
add_shift_bit(keycode);
|
||||||
}
|
}
|
||||||
register_code(keycode);
|
register_code(keycode);
|
||||||
return;
|
return;
|
||||||
}
|
|
||||||
|
|
||||||
if (prev_shift) {
|
|
||||||
pseudo_keycode = convert_keycode(keymap, keycode, true);
|
|
||||||
dprintf("pressed: %02X, converted: %04X\n", keycode, pseudo_keycode);
|
|
||||||
add_shift_bit(keycode);
|
|
||||||
|
|
||||||
if (IS_LSFT(pseudo_keycode)) {
|
|
||||||
register_code(QK_LSFT ^ pseudo_keycode);
|
|
||||||
} else {
|
|
||||||
/* delete shift mod temporarily */
|
|
||||||
del_mods(prev_shift);
|
|
||||||
send_keyboard_report();
|
|
||||||
register_code(pseudo_keycode);
|
|
||||||
add_mods(prev_shift);
|
|
||||||
send_keyboard_report();
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
pseudo_keycode = convert_keycode(keymap, keycode, false);
|
|
||||||
dprintf("pressed: %02X, converted: %04X\n", keycode, pseudo_keycode);
|
|
||||||
|
|
||||||
if (IS_LSFT(pseudo_keycode)) {
|
|
||||||
add_weak_mods(MOD_BIT(KC_LSFT));
|
|
||||||
send_keyboard_report();
|
|
||||||
register_code(QK_LSFT ^ pseudo_keycode);
|
|
||||||
/* on Windows, prevent key repeat to avoid unintended output */
|
|
||||||
unregister_code(QK_LSFT ^ pseudo_keycode);
|
|
||||||
del_weak_mods(MOD_BIT(KC_LSFT));
|
|
||||||
send_keyboard_report();
|
|
||||||
} else {
|
|
||||||
register_code(pseudo_keycode);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
if (get_shift_bit(keycode)) {
|
|
||||||
del_shift_bit(keycode);
|
|
||||||
pseudo_keycode = convert_keycode(keymap, keycode, true);
|
|
||||||
} else {
|
|
||||||
pseudo_keycode = convert_keycode(keymap, keycode, false);
|
|
||||||
}
|
|
||||||
dprintf("released: %02X, converted: %04X\n", keycode, pseudo_keycode);
|
|
||||||
|
|
||||||
if (IS_LSFT(pseudo_keycode)) {
|
|
||||||
unregister_code(QK_LSFT ^ pseudo_keycode);
|
|
||||||
} else {
|
|
||||||
unregister_code(pseudo_keycode);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (prev_shift) {
|
||||||
|
pseudo_keycode = convert_keycode(keymap, keycode, true);
|
||||||
|
dprintf("pressed: %02X, converted: %04X\n", keycode, pseudo_keycode);
|
||||||
|
add_shift_bit(keycode);
|
||||||
|
|
||||||
|
if (IS_LSFT(pseudo_keycode)) {
|
||||||
|
register_code(QK_LSFT ^ pseudo_keycode);
|
||||||
|
} else {
|
||||||
|
/* delete shift mod temporarily */
|
||||||
|
del_mods(prev_shift);
|
||||||
|
send_keyboard_report();
|
||||||
|
register_code(pseudo_keycode);
|
||||||
|
add_mods(prev_shift);
|
||||||
|
send_keyboard_report();
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
pseudo_keycode = convert_keycode(keymap, keycode, false);
|
||||||
|
dprintf("pressed: %02X, converted: %04X\n", keycode, pseudo_keycode);
|
||||||
|
|
||||||
|
if (IS_LSFT(pseudo_keycode)) {
|
||||||
|
add_weak_mods(MOD_BIT(KC_LSFT));
|
||||||
|
send_keyboard_report();
|
||||||
|
register_code(QK_LSFT ^ pseudo_keycode);
|
||||||
|
/* on Windows, prevent key repeat to avoid unintended output */
|
||||||
|
unregister_code(QK_LSFT ^ pseudo_keycode);
|
||||||
|
del_weak_mods(MOD_BIT(KC_LSFT));
|
||||||
|
send_keyboard_report();
|
||||||
|
} else {
|
||||||
|
register_code(pseudo_keycode);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (get_shift_bit(keycode)) {
|
||||||
|
del_shift_bit(keycode);
|
||||||
|
pseudo_keycode = convert_keycode(keymap, keycode, true);
|
||||||
|
} else {
|
||||||
|
pseudo_keycode = convert_keycode(keymap, keycode, false);
|
||||||
|
}
|
||||||
|
dprintf("released: %02X, converted: %04X\n", keycode, pseudo_keycode);
|
||||||
|
|
||||||
|
if (IS_LSFT(pseudo_keycode)) {
|
||||||
|
unregister_code(QK_LSFT ^ pseudo_keycode);
|
||||||
|
} else {
|
||||||
|
unregister_code(pseudo_keycode);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
uint16_t convert_keycode(const uint16_t (*keymap)[2], uint16_t keycode, bool shift_modded)
|
uint16_t convert_keycode(const uint16_t (*keymap)[2], uint16_t keycode, bool shift_modded)
|
||||||
{
|
{
|
||||||
uint16_t pseudo_keycode;
|
uint16_t pseudo_keycode;
|
||||||
|
|
||||||
switch (keycode) {
|
switch (keycode) {
|
||||||
case KC_A ... KC_CAPSLOCK:
|
case KC_A ... KC_CAPSLOCK:
|
||||||
#if defined(__AVR__)
|
#if defined(__AVR__)
|
||||||
if (shift_modded) {
|
if (shift_modded) {
|
||||||
pseudo_keycode = pgm_read_word(&keymap[keycode][1]);
|
pseudo_keycode = pgm_read_word(&keymap[keycode][1]);
|
||||||
} else {
|
} else {
|
||||||
pseudo_keycode = pgm_read_word(&keymap[keycode][0]);
|
pseudo_keycode = pgm_read_word(&keymap[keycode][0]);
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
if (shift_modded) {
|
if (shift_modded) {
|
||||||
pseudo_keycode = keymap[keycode][1];
|
pseudo_keycode = keymap[keycode][1];
|
||||||
} else {
|
} else {
|
||||||
pseudo_keycode = keymap[keycode][0];
|
pseudo_keycode = keymap[keycode][0];
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
/* if undefined, use got keycode as it is */
|
/* if undefined, use got keycode as it is */
|
||||||
if (pseudo_keycode == 0x00) {
|
if (pseudo_keycode == 0x00) {
|
||||||
if (shift_modded) {
|
if (shift_modded) {
|
||||||
pseudo_keycode = S(keycode);
|
pseudo_keycode = S(keycode);
|
||||||
} else {
|
} else {
|
||||||
pseudo_keycode = keycode;
|
pseudo_keycode = keycode;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
if (shift_modded) {
|
if (shift_modded) {
|
||||||
pseudo_keycode = S(keycode);
|
pseudo_keycode = S(keycode);
|
||||||
} else {
|
} else {
|
||||||
pseudo_keycode = keycode;
|
pseudo_keycode = keycode;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
return pseudo_keycode;
|
return pseudo_keycode;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint8_t get_shift_bit(uint16_t keycode) {
|
uint8_t get_shift_bit(uint16_t keycode) {
|
||||||
if ((keycode >> 3) < SHIFT_BIT_SIZE) {
|
if ((keycode >> 3) < SHIFT_BIT_SIZE) {
|
||||||
return send_key_shift_bit[keycode >> 3] & (1 << (keycode & 7));
|
return send_key_shift_bit[keycode >> 3] & (1 << (keycode & 7));
|
||||||
} else {
|
} else {
|
||||||
dprintf("get_shift_bit: Can't get shift bit. keycode: %02X\n", keycode);
|
dprintf("get_shift_bit: Can't get shift bit. keycode: %02X\n", keycode);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void add_shift_bit(uint16_t keycode) {
|
void add_shift_bit(uint16_t keycode) {
|
||||||
if ((keycode >> 3) < SHIFT_BIT_SIZE) {
|
if ((keycode >> 3) < SHIFT_BIT_SIZE) {
|
||||||
send_key_shift_bit[keycode >> 3] |= (1 << (keycode & 7));
|
send_key_shift_bit[keycode >> 3] |= (1 << (keycode & 7));
|
||||||
} else {
|
} else {
|
||||||
dprintf("add_shift_bit: Can't add shift bit. keycode: %02X\n", keycode);
|
dprintf("add_shift_bit: Can't add shift bit. keycode: %02X\n", keycode);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void del_shift_bit(uint16_t keycode) {
|
void del_shift_bit(uint16_t keycode) {
|
||||||
if ((keycode >> 3) < SHIFT_BIT_SIZE) {
|
if ((keycode >> 3) < SHIFT_BIT_SIZE) {
|
||||||
send_key_shift_bit[keycode >> 3] &= ~(1 << (keycode & 7));
|
send_key_shift_bit[keycode >> 3] &= ~(1 << (keycode & 7));
|
||||||
} else {
|
} else {
|
||||||
dprintf("del_shift_bit: Can't delete shift bit. keycode: %02X\n", keycode);
|
dprintf("del_shift_bit: Can't delete shift bit. keycode: %02X\n", keycode);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
34
keyboards/comet46/keymaps/satt/config.h
Normal file
34
keyboards/comet46/keymaps/satt/config.h
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
/*
|
||||||
|
This is the c configuration file for the keymap
|
||||||
|
|
||||||
|
Copyright 2012 Jun Wako <wakojun@gmail.com>
|
||||||
|
Copyright 2015 Jack Humbert
|
||||||
|
|
||||||
|
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/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef CONFIG_USER_H
|
||||||
|
#define CONFIG_USER_H
|
||||||
|
|
||||||
|
/* key combination for command */
|
||||||
|
#define IS_COMMAND() ( \
|
||||||
|
keyboard_report->mods == (MOD_BIT(KC_LSFT) | MOD_BIT(KC_RSFT)) \
|
||||||
|
)
|
||||||
|
|
||||||
|
/* Use I2C or Serial */
|
||||||
|
|
||||||
|
#define USE_I2C
|
||||||
|
#define SSD1306OLED
|
||||||
|
|
||||||
|
#endif
|
||||||
@@ -4,64 +4,96 @@
|
|||||||
#include QMK_KEYBOARD_H
|
#include QMK_KEYBOARD_H
|
||||||
#include "keymap_jis2us.h"
|
#include "keymap_jis2us.h"
|
||||||
#include "action_pseudo_lut.h"
|
#include "action_pseudo_lut.h"
|
||||||
|
#include "keymap_jp.h"
|
||||||
|
#ifdef SSD1306OLED
|
||||||
|
#include "ssd1306.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
// Each layer gets a name for readability, which is then used in the keymap matrix below.
|
// Each layer gets a name for readability, which is then used in the keymap matrix below.
|
||||||
// The underscores don't mean anything - you can have a layer called STUFF or any other name.
|
// The underscores don't mean anything - you can have a layer called STUFF or any other name.
|
||||||
// Layer names don't all need to be of the same length, obviously, and you can also skip them
|
// Layer names don't all need to be of the same length, obviously, and you can also skip them
|
||||||
// entirely and just use numbers.
|
// entirely and just use numbers.
|
||||||
enum comet46_layers {
|
enum comet46_layers {
|
||||||
_QWERTY,
|
_QWERTY,
|
||||||
_LOWER,
|
_LOWER,
|
||||||
_RAISE,
|
_RAISE,
|
||||||
_PSEUDO_US,
|
_PSEUDO_US,
|
||||||
_PSEUDO_US_LOWER,
|
_PSEUDO_US_LOWER,
|
||||||
_PSEUDO_US_RAISE,
|
_PSEUDO_US_RAISE,
|
||||||
_ADJUST
|
_ADJUST
|
||||||
};
|
};
|
||||||
|
|
||||||
enum custom_keycodes {
|
enum custom_keycodes {
|
||||||
QWERTY = SAFE_RANGE,
|
QWERTY = SAFE_RANGE,
|
||||||
PSEUDO_US,
|
PSEUDO_US,
|
||||||
|
JIS2US,
|
||||||
};
|
};
|
||||||
|
|
||||||
#define KC_LWR MO(_LOWER)
|
// JIS keycodes
|
||||||
#define KC_RSE MO(_RAISE)
|
#define KC_JZHT JP_ZHTG // hankaku/zenkaku|kanzi
|
||||||
|
#define KC_JCIR JP_CIRC // ^, ~
|
||||||
|
#define KC_JAT JP_AT // @, `
|
||||||
|
#define KC_JLBR JP_LBRC // [, {
|
||||||
|
#define KC_JCOL JP_COLN // :, *
|
||||||
|
#define KC_JRBR JP_RBRC // ], }
|
||||||
|
#define KC_JBSL JP_BSLS // \, _
|
||||||
|
#define KC_JMHE JP_MHEN // muhenkan
|
||||||
|
#define KC_JHEN JP_HENK // henkan
|
||||||
|
#define KC_JKAN JP_KANA // katakana/hiragana|ro-mazi
|
||||||
|
#define KC_JMKA JP_MKANA //kana on MacOSX
|
||||||
|
#define KC_JMEI JP_MEISU //eisu on MacOSX
|
||||||
|
#define KC_JAMP JP_AMPR // &
|
||||||
|
#define KC_JQUO JP_QUOT // '
|
||||||
|
#define KC_JLPR JP_LPRN // (
|
||||||
|
#define KC_JRPR JP_RPRN // )
|
||||||
|
#define KC_JEQL JP_EQL // =
|
||||||
|
#define KC_JTIL JP_TILD // ~
|
||||||
|
#define KC_JPIP JP_PIPE // |
|
||||||
|
#define KC_JGRV JP_GRV // `
|
||||||
|
#define KC_JLCB JP_LCBR // {
|
||||||
|
#define KC_JPLU JP_PLUS // +
|
||||||
|
#define KC_JAST JP_ASTR // *
|
||||||
|
#define KC_JRCB JP_RCBR // }
|
||||||
|
#define KC_JUND JP_UNDS // _
|
||||||
|
|
||||||
|
// Layer related keycodes
|
||||||
|
#define KC_LWR MO(_LOWER)
|
||||||
|
#define KC_RSE MO(_RAISE)
|
||||||
#define KC_P_LW MO(_PSEUDO_US_LOWER)
|
#define KC_P_LW MO(_PSEUDO_US_LOWER)
|
||||||
#define KC_P_RS MO(_PSEUDO_US_RAISE)
|
#define KC_P_RS MO(_PSEUDO_US_RAISE)
|
||||||
#define KC_QWRT QWERTY
|
#define KC_QWRT QWERTY
|
||||||
#define KC_P_US PSEUDO_US
|
#define KC_P_US PSEUDO_US
|
||||||
|
#define KC_J2US JIS2US
|
||||||
|
|
||||||
|
// Special keycodes
|
||||||
#define KC_SPCT CTL_T(KC_SPC)
|
#define KC_SPCT CTL_T(KC_SPC)
|
||||||
#define KC_ENSF SFT_T(KC_ENT)
|
#define KC_ENSF SFT_T(KC_ENT)
|
||||||
#define KC_SFTA SFT_T(KC_A)
|
#define KC_CAEC MT(MOD_LCTL | MOD_LALT, KC_ESC)
|
||||||
#define KC_CTSF S(KC_LCTL)
|
#define KC_CSTB C_S_T(KC_TAB)
|
||||||
#define KC_IMON ALT_T(KC_F13)
|
#define KC_IMON ALT_T(KC_F13)
|
||||||
#define KC_IMOF GUI_T(KC_F14)
|
#define KC_IMOF GUI_T(KC_F14)
|
||||||
#define KC_SRO S(KC_RO)
|
|
||||||
#define KC_SYEN S(KC_JYEN)
|
|
||||||
#define KC_CAD LCA(KC_DEL)
|
#define KC_CAD LCA(KC_DEL)
|
||||||
#define KC_RST RESET
|
#define KC_RST RESET
|
||||||
|
|
||||||
#define LONGPRESS_DELAY 150
|
|
||||||
|
|
||||||
// Fillers to make layering more clear
|
// Fillers to make layering more clear
|
||||||
#define KC_ KC_TRNS
|
#define KC_ KC_TRNS
|
||||||
#define KC_XXXX KC_NO
|
#define KC_XXXX KC_NO
|
||||||
|
|
||||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||||
|
|
||||||
[_QWERTY] = LAYOUT_kc(
|
[_QWERTY] = LAYOUT_kc(
|
||||||
//,----+----+----+----+----+----+ +----+----+----+----+----+----.
|
//,----+----+----+----+----+----+ +----+----+----+----+----+----.
|
||||||
ESC , Q , W , E , R , T , Y , U , I , O , P ,DEL ,
|
CAEC, Q , W , E , R , T , Y , U , I , O , P ,DEL ,
|
||||||
//|----+----+----+----+----+----+----+ +----+----+----+----+----+----+----|
|
//|----+----+----+----+----+----+----+ +----+----+----+----+----+----+----|
|
||||||
TAB ,SFTA, S , D , F , G ,LPRN, RPRN, H , J , K , L ,SCLN,BSPC,
|
CSTB, A , S , D , F , G ,LPRN, RPRN, H , J , K , L ,SCLN,BSPC,
|
||||||
//|----+----+----+----+----+----+----| |----+----+----+----+----+----+----|
|
//|----+----+----+----+----+----+----| |----+----+----+----+----+----+----|
|
||||||
CTSF, Z , X , C , V , B ,LBRC, RBRC, N , M ,COMM,DOT ,SLSH,QUOT,
|
LSFT, Z , X , C , V , B ,LBRC, RBRC, N , M ,COMM,DOT ,SLSH,QUOT,
|
||||||
//|----+----+----+----+----+----+----| |----+----+----+----+----+----+----|
|
//|----+----+----+----+----+----+----| |----+----+----+----+----+----+----|
|
||||||
IMOF,LWR ,SPCT, ENSF,RSE ,IMON
|
IMOF,LWR ,SPCT, ENSF,RSE ,IMON
|
||||||
// +----+----+---/ \---+----+----+
|
// +----+----+---/ \---+----+----+
|
||||||
),
|
),
|
||||||
|
|
||||||
[_LOWER] = LAYOUT_kc(
|
[_LOWER] = LAYOUT_kc(
|
||||||
//,----+----+----+----+----+----+ +----+----+----+----+----+----.
|
//,----+----+----+----+----+----+ +----+----+----+----+----+----.
|
||||||
,EXLM, AT ,HASH,DLR ,PERC, CIRC,AMPR,ASTR,LPRN,RPRN, ,
|
,EXLM, AT ,HASH,DLR ,PERC, CIRC,AMPR,ASTR,LPRN,RPRN, ,
|
||||||
//|----+----+----+----+----+----+----+ +----+----+----+----+----+----+----|
|
//|----+----+----+----+----+----+----+ +----+----+----+----+----+----+----|
|
||||||
@@ -69,60 +101,60 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|||||||
//|----+----+----+----+----+----+----| |----+----+----+----+----+----+----|
|
//|----+----+----+----+----+----+----| |----+----+----+----+----+----+----|
|
||||||
, F7 , F8 , F9 , F10, F11, F12, TILD,PIPE,UNDS,PLUS,LCBR,RCBR, ,
|
, F7 , F8 , F9 , F10, F11, F12, TILD,PIPE,UNDS,PLUS,LCBR,RCBR, ,
|
||||||
//|----+----+----+----+----+----+----| |----+----+----+----+----+----+----|
|
//|----+----+----+----+----+----+----| |----+----+----+----+----+----+----|
|
||||||
, , , , ,
|
, , , , ,
|
||||||
// +----+----+---/ \---+----+----+
|
// +----+----+---/ \---+----+----+
|
||||||
),
|
),
|
||||||
|
|
||||||
[_RAISE] = LAYOUT_kc(
|
[_RAISE] = LAYOUT_kc(
|
||||||
//,----+----+----+----+----+----+ +----+----+----+----+----+----.
|
//,----+----+----+----+----+----+ +----+----+----+----+----+----.
|
||||||
, 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 , 0 , ,
|
, 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 , 0 , ,
|
||||||
//|----+----+----+----+----+----+----+ +----+----+----+----+----+----+----|
|
//|----+----+----+----+----+----+----+ +----+----+----+----+----+----+----|
|
||||||
, , , , , , , XXXX,LEFT,DOWN, UP ,RGHT,END , ,
|
, , , , , , , XXXX,LEFT,DOWN, UP ,RGHT,END , ,
|
||||||
//|----+----+----+----+----+----+----| |----+----+----+----+----+----+----|
|
//|----+----+----+----+----+----+----| |----+----+----+----+----+----+----|
|
||||||
, , , , , , , HOME,XXXX,XXXX,XXXX,XXXX,XXXX, ,
|
, , , , , , , HOME,XXXX,PGDN,PGUP,XXXX,XXXX, ,
|
||||||
//|----+----+----+----+----+----+----| |----+----+----+----+----+----+----|
|
//|----+----+----+----+----+----+----| |----+----+----+----+----+----+----|
|
||||||
, , , , ,
|
, , , , ,
|
||||||
// +----+----+---/ \---+----+----+
|
// +----+----+---/ \---+----+----+
|
||||||
),
|
),
|
||||||
|
|
||||||
[_PSEUDO_US] = LAYOUT_kc(
|
[_PSEUDO_US] = LAYOUT_kc(
|
||||||
//,----+----+----+----+----+----+ +----+----+----+----+----+----.
|
//,----+----+----+----+----+----+ +----+----+----+----+----+----.
|
||||||
ESC , Q , W , E , R , T , Y , U , I , O , P ,DEL ,
|
CAEC, Q , W , E , R , T , Y , U , I , O , P ,DEL ,
|
||||||
//|----+----+----+----+----+----+----+ +----+----+----+----+----+----+----|
|
//|----+----+----+----+----+----+----+ +----+----+----+----+----+----+----|
|
||||||
TAB ,SFTA, S , D , F , G ,ASTR, LPRN, H , J , K , L ,FN0 ,BSPC,
|
CSTB, A , S , D , F , G ,JLPR, JRPR, H , J , K , L ,J2US,BSPC,
|
||||||
//|----+----+----+----+----+----+----| |----+----+----+----+----+----+----|
|
//|----+----+----+----+----+----+----| |----+----+----+----+----+----+----|
|
||||||
CTSF, Z , X , C , V , B ,FN0 , FN0 , N , M ,COMM,DOT ,SLSH,FN0 ,
|
LSFT, Z , X , C , V , B ,J2US, J2US, N , M ,COMM,DOT ,SLSH,J2US,
|
||||||
//|----+----+----+----+----+----+----| |----+----+----+----+----+----+----|
|
//|----+----+----+----+----+----+----| |----+----+----+----+----+----+----|
|
||||||
IMOF,P_LW,SPCT, ENSF,P_RS,IMON
|
IMOF,P_LW,SPCT, ENSF,P_RS,IMON
|
||||||
// +----+----+---/ \---+----+----+
|
// +----+----+---/ \---+----+----+
|
||||||
),
|
),
|
||||||
|
|
||||||
|
|
||||||
[_PSEUDO_US_LOWER] = LAYOUT_kc(
|
[_PSEUDO_US_LOWER] = LAYOUT_kc(
|
||||||
//,----+----+----+----+----+----+ +----+----+----+----+----+----.
|
//,----+----+----+----+----+----+ +----+----+----+----+----+----.
|
||||||
,EXLM,LBRC,HASH,DLR ,PERC, EQL ,CIRC, DQT,ASTR,LPRN, ,
|
,EXLM,JAT ,HASH,DLR ,PERC, JCIR,JAMP,JAST,JLPR,JRPR, ,
|
||||||
//|----+----+----+----+----+----+----+ +----+----+----+----+----+----+----|
|
//|----+----+----+----+----+----+----+ +----+----+----+----+----+----+----|
|
||||||
, F1 , F2 , F3 , F4 , F5 , F6 , LCBR,JYEN,MINS,UNDS,RBRC,BSLS, ,
|
, F1 , F2 , F3 , F4 , F5 , F6 , JGRV,JBSL,MINS,JEQL,JLBR,JRBR, ,
|
||||||
//|----+----+----+----+----+----+----| |----+----+----+----+----+----+----|
|
//|----+----+----+----+----+----+----| |----+----+----+----+----+----+----|
|
||||||
, F7 , F8 , F9 , F10, F11, F12, PLUS,SYEN,SRO ,COLN,RCBR,PIPE, ,
|
, F7 , F8 , F9 , F10, F11, F12, JTIL,JPIP,JUND,JPLU,JLCB,JRCB, ,
|
||||||
//|----+----+----+----+----+----+----| |----+----+----+----+----+----+----|
|
//|----+----+----+----+----+----+----| |----+----+----+----+----+----+----|
|
||||||
, , , , ,
|
, , , , ,
|
||||||
// +----+----+---/ \---+----+----+
|
// +----+----+---/ \---+----+----+
|
||||||
),
|
),
|
||||||
|
|
||||||
[_PSEUDO_US_RAISE] = LAYOUT_kc(
|
[_PSEUDO_US_RAISE] = LAYOUT_kc(
|
||||||
//,----+----+----+----+----+----+ +----+----+----+----+----+----.
|
//,----+----+----+----+----+----+ +----+----+----+----+----+----.
|
||||||
, 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 , 0 , ,
|
, 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 , 0 , ,
|
||||||
//|----+----+----+----+----+----+----+ +----+----+----+----+----+----+----|
|
//|----+----+----+----+----+----+----+ +----+----+----+----+----+----+----|
|
||||||
, , , , , , GRV, XXXX,LEFT,DOWN, UP ,RGHT,END , ,
|
, , , , , ,JZHT, XXXX,LEFT,DOWN, UP ,RGHT,END , ,
|
||||||
//|----+----+----+----+----+----+----| |----+----+----+----+----+----+----|
|
//|----+----+----+----+----+----+----| |----+----+----+----+----+----+----|
|
||||||
, , , , , , , HOME,XXXX,XXXX,XXXX,XXXX,XXXX, ,
|
, , , , , , , HOME,XXXX,PGDN,PGUP,XXXX,XXXX, ,
|
||||||
//|----+----+----+----+----+----+----| |----+----+----+----+----+----+----|
|
//|----+----+----+----+----+----+----| |----+----+----+----+----+----+----|
|
||||||
, , , , ,
|
, , , , ,
|
||||||
// +----+----+---/ \---+----+----+
|
// +----+----+---/ \---+----+----+
|
||||||
),
|
),
|
||||||
|
|
||||||
[_ADJUST] = LAYOUT_kc(
|
[_ADJUST] = LAYOUT_kc(
|
||||||
//,----+----+----+----+----+----+ +----+----+----+----+----+----.
|
//,----+----+----+----+----+----+ +----+----+----+----+----+----.
|
||||||
, , , , , , , , , , , ,
|
, , , , , , , , , , , ,
|
||||||
//|----+----+----+----+----+----+----+ +----+----+----+----+----+----+----|
|
//|----+----+----+----+----+----+----+ +----+----+----+----+----+----+----|
|
||||||
@@ -130,69 +162,16 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|||||||
//|----+----+----+----+----+----+----| |----+----+----+----+----+----+----|
|
//|----+----+----+----+----+----+----| |----+----+----+----+----+----+----|
|
||||||
, , , , , ,RST , P_US, , , , , , ,
|
, , , , , ,RST , P_US, , , , , , ,
|
||||||
//|----+----+----+----+----+----+----| |----+----+----+----+----+----+----|
|
//|----+----+----+----+----+----+----| |----+----+----+----+----+----+----|
|
||||||
, , , , ,
|
, , , , ,
|
||||||
// +----+----+---/ \---+----+----+
|
// +----+----+---/ \---+----+----+
|
||||||
)
|
)
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* user defined action function
|
|
||||||
*/
|
|
||||||
enum function_id {
|
|
||||||
PSEUDO_US_FUNCTION,
|
|
||||||
};
|
|
||||||
|
|
||||||
void action_function(keyrecord_t *record, uint8_t id, uint8_t opt) {
|
|
||||||
switch (id)
|
|
||||||
{
|
|
||||||
case PSEUDO_US_FUNCTION:
|
|
||||||
action_pseudo_lut(record, _QWERTY, keymap_jis2us);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Fn action definition
|
|
||||||
*/
|
|
||||||
const uint16_t PROGMEM fn_actions[] = {
|
|
||||||
[0] = ACTION_FUNCTION(PSEUDO_US_FUNCTION),
|
|
||||||
};
|
|
||||||
|
|
||||||
void matrix_scan_user(void) {
|
|
||||||
uint8_t layer = biton32(layer_state);
|
|
||||||
switch (layer) {
|
|
||||||
case _LOWER:
|
|
||||||
set_led_red;
|
|
||||||
break;
|
|
||||||
case _RAISE:
|
|
||||||
set_led_blue;
|
|
||||||
break;
|
|
||||||
case _PSEUDO_US_LOWER:
|
|
||||||
set_led_yellow;
|
|
||||||
break;
|
|
||||||
case _PSEUDO_US_RAISE:
|
|
||||||
set_led_cyan;
|
|
||||||
break;
|
|
||||||
case _ADJUST:
|
|
||||||
set_led_magenta;
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
set_led_green;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
uint32_t layer_state_set_user(uint32_t state) {
|
uint32_t layer_state_set_user(uint32_t state) {
|
||||||
switch (biton32(state)) {
|
switch (biton32(state)) {
|
||||||
case _PSEUDO_US:
|
|
||||||
return update_tri_layer_state(state, _PSEUDO_US_RAISE, _PSEUDO_US_LOWER, _ADJUST);
|
|
||||||
break;
|
|
||||||
case _PSEUDO_US_LOWER:
|
case _PSEUDO_US_LOWER:
|
||||||
return update_tri_layer_state(state, _PSEUDO_US_RAISE, _PSEUDO_US_LOWER, _ADJUST);
|
case _PSEUDO_US_RAISE:
|
||||||
break;
|
|
||||||
case _PSEUDO_US_RAISE:
|
|
||||||
return update_tri_layer_state(state, _PSEUDO_US_RAISE, _PSEUDO_US_LOWER, _ADJUST);
|
return update_tri_layer_state(state, _PSEUDO_US_RAISE, _PSEUDO_US_LOWER, _ADJUST);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
@@ -201,19 +180,112 @@ uint32_t layer_state_set_user(uint32_t state) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//SSD1306 OLED update loop, make sure to add #define SSD1306OLED in config.h
|
||||||
|
#ifdef SSD1306OLED
|
||||||
|
|
||||||
|
// You need to add source files to SRC in rules.mk when using OLED display functions
|
||||||
|
void set_keylog(uint16_t keycode);
|
||||||
|
const char *read_keylog(void);
|
||||||
|
const char *read_modifier_state(void);
|
||||||
|
const char *read_host_led_state(void);
|
||||||
|
|
||||||
|
void matrix_init_user(void) {
|
||||||
|
iota_gfx_init(false); // turns on the display
|
||||||
|
}
|
||||||
|
|
||||||
|
void matrix_scan_user(void) {
|
||||||
|
iota_gfx_task(); // this is what updates the display continuously
|
||||||
|
}
|
||||||
|
|
||||||
|
void matrix_update(struct CharacterMatrix *dest, const struct CharacterMatrix *source) {
|
||||||
|
if (memcmp(dest->display, source->display, sizeof(dest->display))) {
|
||||||
|
memcpy(dest->display, source->display, sizeof(dest->display));
|
||||||
|
dest->dirty = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void render_status(struct CharacterMatrix *matrix) {
|
||||||
|
// Layer state
|
||||||
|
char layer_str[22];
|
||||||
|
matrix_write(matrix, "Layer: ");
|
||||||
|
uint8_t layer = biton32(layer_state);
|
||||||
|
uint8_t default_layer = biton32(eeconfig_read_default_layer());
|
||||||
|
switch (layer) {
|
||||||
|
case _QWERTY:
|
||||||
|
switch (default_layer) {
|
||||||
|
case _QWERTY:
|
||||||
|
snprintf(layer_str, sizeof(layer_str), "Qwerty");
|
||||||
|
break;
|
||||||
|
case _PSEUDO_US:
|
||||||
|
snprintf(layer_str, sizeof(layer_str), "Psuedo_US");
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
snprintf(layer_str, sizeof(layer_str), "Undef-%d", default_layer);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case _RAISE:
|
||||||
|
snprintf(layer_str, sizeof(layer_str), "Raise");
|
||||||
|
break;
|
||||||
|
case _LOWER:
|
||||||
|
snprintf(layer_str, sizeof(layer_str), "Lower");
|
||||||
|
break;
|
||||||
|
case _PSEUDO_US_RAISE:
|
||||||
|
snprintf(layer_str, sizeof(layer_str), "P_US_Raise");
|
||||||
|
break;
|
||||||
|
case _PSEUDO_US_LOWER:
|
||||||
|
snprintf(layer_str, sizeof(layer_str), "P_US_Lower");
|
||||||
|
break;
|
||||||
|
case _ADJUST:
|
||||||
|
snprintf(layer_str, sizeof(layer_str), "Adjust");
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
snprintf(layer_str, sizeof(layer_str), "Undef-%d", layer);
|
||||||
|
}
|
||||||
|
matrix_write_ln(matrix, layer_str);
|
||||||
|
// Last entered keycode
|
||||||
|
matrix_write_ln(matrix, read_keylog());
|
||||||
|
// Modifier state
|
||||||
|
matrix_write_ln(matrix, read_modifier_state());
|
||||||
|
// Host Keyboard LED Status
|
||||||
|
matrix_write(matrix, read_host_led_state());
|
||||||
|
}
|
||||||
|
|
||||||
|
void iota_gfx_task_user(void) {
|
||||||
|
struct CharacterMatrix matrix;
|
||||||
|
|
||||||
|
#if DEBUG_TO_SCREEN
|
||||||
|
if (debug_enable) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
matrix_clear(&matrix);
|
||||||
|
render_status(&matrix);
|
||||||
|
matrix_update(&display, &matrix);
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif//SSD1306OLED
|
||||||
|
|
||||||
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
||||||
|
#ifdef SSD1306OLED
|
||||||
|
if (record->event.pressed) {
|
||||||
|
set_keylog(keycode);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
switch (keycode) {
|
switch (keycode) {
|
||||||
case QWERTY:
|
case QWERTY:
|
||||||
if (record->event.pressed) {
|
if (record->event.pressed) {
|
||||||
set_single_persistent_default_layer(_QWERTY);
|
set_single_persistent_default_layer(_QWERTY);
|
||||||
}
|
}
|
||||||
return false;
|
|
||||||
break;
|
break;
|
||||||
case PSEUDO_US:
|
case PSEUDO_US:
|
||||||
if (record->event.pressed) {
|
if (record->event.pressed) {
|
||||||
set_single_persistent_default_layer(_PSEUDO_US);
|
set_single_persistent_default_layer(_PSEUDO_US);
|
||||||
}
|
}
|
||||||
return false;
|
break;
|
||||||
|
case JIS2US:
|
||||||
|
action_pseudo_lut(record, _QWERTY, keymap_jis2us);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
|
|||||||
@@ -3,30 +3,30 @@
|
|||||||
|
|
||||||
/* keymap for convert from JIS to US */
|
/* keymap for convert from JIS to US */
|
||||||
const uint16_t PROGMEM keymap_jis2us[][2] = {
|
const uint16_t PROGMEM keymap_jis2us[][2] = {
|
||||||
[KC_A ... KC_CAPS] = { 0x00, 0x00 }, /* default value */
|
[KC_A ... KC_CAPS] = { 0x00, 0x00 }, /* default value */
|
||||||
|
|
||||||
[KC_1] = { KC_1, KC_EXLM }, /* 1 and ! -> 1 and ! */
|
[KC_1] = { KC_1, KC_EXLM }, /* 1 and ! -> 1 and ! */
|
||||||
[KC_2] = { KC_2, KC_LBRC }, /* 2 and " -> 2 and @ */
|
[KC_2] = { KC_2, KC_LBRC }, /* 2 and " -> 2 and @ */
|
||||||
[KC_3] = { KC_3, KC_HASH }, /* 3 and # -> 3 and # */
|
[KC_3] = { KC_3, KC_HASH }, /* 3 and # -> 3 and # */
|
||||||
[KC_4] = { KC_4, KC_DLR }, /* 4 and $ -> 4 and $ */
|
[KC_4] = { KC_4, KC_DLR }, /* 4 and $ -> 4 and $ */
|
||||||
[KC_5] = { KC_5, KC_PERC }, /* 5 and % -> 5 and % */
|
[KC_5] = { KC_5, KC_PERC }, /* 5 and % -> 5 and % */
|
||||||
[KC_6] = { KC_6, KC_EQL }, /* 6 and & -> 6 and ^ */
|
[KC_6] = { KC_6, KC_EQL }, /* 6 and & -> 6 and ^ */
|
||||||
[KC_7] = { KC_7, KC_CIRC }, /* 7 and ' -> 7 and & */
|
[KC_7] = { KC_7, KC_CIRC }, /* 7 and ' -> 7 and & */
|
||||||
[KC_8] = { KC_8, KC_DQT }, /* 8 and ( -> 8 and * */
|
[KC_8] = { KC_8, KC_DQT }, /* 8 and ( -> 8 and * */
|
||||||
[KC_9] = { KC_9, KC_ASTR }, /* 9 and ) -> 9 and ( */
|
[KC_9] = { KC_9, KC_ASTR }, /* 9 and ) -> 9 and ( */
|
||||||
[KC_0] = { KC_0, KC_LPRN }, /* 0 and (no assign) -> 0 and ) */
|
[KC_0] = { KC_0, KC_LPRN }, /* 0 and (no assign) -> 0 and ) */
|
||||||
[KC_MINS] = { KC_MINS, S(KC_RO) }, /* - and = -> - and _ */
|
[KC_MINS] = { KC_MINS, S(KC_RO) }, /* - and = -> - and _ */
|
||||||
[KC_EQL] = { KC_UNDS, KC_COLN }, /* ^ and ~ -> = and + */
|
[KC_EQL] = { KC_UNDS, KC_COLN }, /* ^ and ~ -> = and + */
|
||||||
[KC_LBRC] = { KC_RBRC, KC_RCBR }, /* @ and ` -> [ and { */
|
[KC_LBRC] = { KC_RBRC, KC_RCBR }, /* @ and ` -> [ and { */
|
||||||
[KC_RBRC] = { KC_BSLS, KC_PIPE }, /* [ and { -> ] and } */
|
[KC_RBRC] = { KC_BSLS, KC_PIPE }, /* [ and { -> ] and } */
|
||||||
[KC_BSLS] = { KC_JYEN, S(KC_JYEN) }, /* ] and } -> / and | */
|
[KC_BSLS] = { KC_JYEN, S(KC_JYEN) }, /* ] and } -> / and | */
|
||||||
[KC_NUHS] = { KC_NUHS, S(KC_NUHS) }, /* (no assign) */
|
[KC_NUHS] = { KC_NUHS, S(KC_NUHS) }, /* (no assign) */
|
||||||
[KC_SCLN] = { KC_SCLN, KC_QUOT }, /* ; and + -> ; and : */
|
[KC_SCLN] = { KC_SCLN, KC_QUOT }, /* ; and + -> ; and : */
|
||||||
[KC_QUOT] = { KC_AMPR, KC_AT }, /* : and * -> ' and " */
|
[KC_QUOT] = { KC_AMPR, KC_AT }, /* : and * -> ' and " */
|
||||||
[KC_GRV] = { KC_LCBR, KC_PLUS }, /* (no assign) -> ` and ~ */
|
[KC_GRV] = { KC_LCBR, KC_PLUS }, /* (no assign) -> ` and ~ */
|
||||||
[KC_COMM] = { KC_COMM, KC_LT }, /* , and < -> , and < */
|
[KC_COMM] = { KC_COMM, KC_LT }, /* , and < -> , and < */
|
||||||
[KC_DOT] = { KC_DOT, KC_GT }, /* . and > -> . and > */
|
[KC_DOT] = { KC_DOT, KC_GT }, /* . and > -> . and > */
|
||||||
[KC_SLSH] = { KC_SLSH, KC_QUES }, /* / and ? -> / and ? */
|
[KC_SLSH] = { KC_SLSH, KC_QUES }, /* / and ? -> / and ? */
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -1,26 +1,7 @@
|
|||||||
SRC += action_pseudo_lut.c
|
SRC += action_pseudo_lut.c
|
||||||
|
|
||||||
# Build Options
|
# If you want to change display settings of the OLED, you need to change the following lines
|
||||||
# change to "no" to disable the options, or define them in the Makefile in
|
SRC += ./lib/glcdfont.c \
|
||||||
# the appropriate keymap folder that will get included automatically
|
./lib/keylogger.c \
|
||||||
#
|
./lib/modifier_state_reader.c \
|
||||||
BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000)
|
./lib/host_led_state_reader.c
|
||||||
MOUSEKEY_ENABLE = no # Mouse keys(+4700)
|
|
||||||
EXTRAKEY_ENABLE = no # Audio control and System control(+450)
|
|
||||||
CONSOLE_ENABLE = no # Console for debug(+400)
|
|
||||||
COMMAND_ENABLE = no # Commands for debug and configuration
|
|
||||||
NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
|
|
||||||
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
|
|
||||||
MIDI_ENABLE = no # MIDI controls
|
|
||||||
AUDIO_ENABLE = no # Audio output on port C6
|
|
||||||
UNICODE_ENABLE = no # Unicode
|
|
||||||
BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
|
|
||||||
RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight.
|
|
||||||
ONEHAND_ENABLE = no # Enable one-hand typing
|
|
||||||
|
|
||||||
# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
|
|
||||||
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
|
||||||
|
|
||||||
ifndef QUANTUM_DIR
|
|
||||||
include ../../../../Makefile
|
|
||||||
endif
|
|
||||||
|
|||||||
148
keyboards/comet46/lib/glcdfont.c
Normal file
148
keyboards/comet46/lib/glcdfont.c
Normal file
@@ -0,0 +1,148 @@
|
|||||||
|
// This is the 'classic' fixed-space bitmap font for Adafruit_GFX since 1.0.
|
||||||
|
// See gfxfont.h for newer custom bitmap font info.
|
||||||
|
|
||||||
|
#ifndef FONT5X7_H
|
||||||
|
#define FONT5X7_H
|
||||||
|
|
||||||
|
#ifdef __AVR__
|
||||||
|
#include <avr/io.h>
|
||||||
|
#include <avr/pgmspace.h>
|
||||||
|
#elif defined(ESP8266)
|
||||||
|
#include <pgmspace.h>
|
||||||
|
#else
|
||||||
|
#define PROGMEM
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// Standard ASCII 5x7 font
|
||||||
|
|
||||||
|
const unsigned char font[] PROGMEM = {
|
||||||
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||||
|
0x3E, 0x5B, 0x4F, 0x5B, 0x3E, 0x00,
|
||||||
|
0x3E, 0x6B, 0x4F, 0x6B, 0x3E, 0x00,
|
||||||
|
0x1C, 0x3E, 0x7C, 0x3E, 0x1C, 0x00,
|
||||||
|
0x18, 0x3C, 0x7E, 0x3C, 0x18, 0x00,
|
||||||
|
0x1C, 0x57, 0x7D, 0x57, 0x1C, 0x00,
|
||||||
|
0x1C, 0x5E, 0x7F, 0x5E, 0x1C, 0x00,
|
||||||
|
0x00, 0x18, 0x3C, 0x18, 0x00, 0x00,
|
||||||
|
0xFF, 0xE7, 0xC3, 0xE7, 0xFF, 0x00,
|
||||||
|
0x00, 0x18, 0x24, 0x18, 0x00, 0x00,
|
||||||
|
0xFF, 0xE7, 0xDB, 0xE7, 0xFF, 0x00,
|
||||||
|
0x30, 0x48, 0x3A, 0x06, 0x0E, 0x00,
|
||||||
|
0x26, 0x29, 0x79, 0x29, 0x26, 0x00,
|
||||||
|
0x40, 0x7F, 0x05, 0x05, 0x07, 0x00,
|
||||||
|
0x40, 0x7F, 0x05, 0x25, 0x3F, 0x00,
|
||||||
|
0x5A, 0x3C, 0xE7, 0x3C, 0x5A, 0x00,
|
||||||
|
0x7F, 0x3E, 0x1C, 0x1C, 0x08, 0x00,
|
||||||
|
0x08, 0x1C, 0x1C, 0x3E, 0x7F, 0x00,
|
||||||
|
0x14, 0x22, 0x7F, 0x22, 0x14, 0x00,
|
||||||
|
0x5F, 0x5F, 0x00, 0x5F, 0x5F, 0x00,
|
||||||
|
0x06, 0x09, 0x7F, 0x01, 0x7F, 0x00,
|
||||||
|
0x00, 0x66, 0x89, 0x95, 0x6A, 0x00,
|
||||||
|
0x60, 0x60, 0x60, 0x60, 0x60, 0x00,
|
||||||
|
0x94, 0xA2, 0xFF, 0xA2, 0x94, 0x00,
|
||||||
|
0x08, 0x04, 0x7E, 0x04, 0x08, 0x00,
|
||||||
|
0x10, 0x20, 0x7E, 0x20, 0x10, 0x00,
|
||||||
|
0x08, 0x08, 0x2A, 0x1C, 0x08, 0x00,
|
||||||
|
0x08, 0x1C, 0x2A, 0x08, 0x08, 0x00,
|
||||||
|
0x1E, 0x10, 0x10, 0x10, 0x10, 0x00,
|
||||||
|
0x0C, 0x1E, 0x0C, 0x1E, 0x0C, 0x00,
|
||||||
|
0x30, 0x38, 0x3E, 0x38, 0x30, 0x00,
|
||||||
|
0x06, 0x0E, 0x3E, 0x0E, 0x06, 0x00,
|
||||||
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||||
|
0x00, 0x00, 0x5F, 0x00, 0x00, 0x00,
|
||||||
|
0x00, 0x07, 0x00, 0x07, 0x00, 0x00,
|
||||||
|
0x14, 0x7F, 0x14, 0x7F, 0x14, 0x00,
|
||||||
|
0x24, 0x2A, 0x7F, 0x2A, 0x12, 0x00,
|
||||||
|
0x23, 0x13, 0x08, 0x64, 0x62, 0x00,
|
||||||
|
0x36, 0x49, 0x56, 0x20, 0x50, 0x00,
|
||||||
|
0x00, 0x08, 0x07, 0x03, 0x00, 0x00,
|
||||||
|
0x00, 0x1C, 0x22, 0x41, 0x00, 0x00,
|
||||||
|
0x00, 0x41, 0x22, 0x1C, 0x00, 0x00,
|
||||||
|
0x2A, 0x1C, 0x7F, 0x1C, 0x2A, 0x00,
|
||||||
|
0x08, 0x08, 0x3E, 0x08, 0x08, 0x00,
|
||||||
|
0x00, 0x80, 0x70, 0x30, 0x00, 0x00,
|
||||||
|
0x08, 0x08, 0x08, 0x08, 0x08, 0x00,
|
||||||
|
0x00, 0x00, 0x60, 0x60, 0x00, 0x00,
|
||||||
|
0x20, 0x10, 0x08, 0x04, 0x02, 0x00,
|
||||||
|
0x3E, 0x51, 0x49, 0x45, 0x3E, 0x00,
|
||||||
|
0x00, 0x42, 0x7F, 0x40, 0x00, 0x00,
|
||||||
|
0x72, 0x49, 0x49, 0x49, 0x46, 0x00,
|
||||||
|
0x21, 0x41, 0x49, 0x4D, 0x33, 0x00,
|
||||||
|
0x18, 0x14, 0x12, 0x7F, 0x10, 0x00,
|
||||||
|
0x27, 0x45, 0x45, 0x45, 0x39, 0x00,
|
||||||
|
0x3C, 0x4A, 0x49, 0x49, 0x31, 0x00,
|
||||||
|
0x41, 0x21, 0x11, 0x09, 0x07, 0x00,
|
||||||
|
0x36, 0x49, 0x49, 0x49, 0x36, 0x00,
|
||||||
|
0x46, 0x49, 0x49, 0x29, 0x1E, 0x00,
|
||||||
|
0x00, 0x00, 0x14, 0x00, 0x00, 0x00,
|
||||||
|
0x00, 0x40, 0x34, 0x00, 0x00, 0x00,
|
||||||
|
0x00, 0x08, 0x14, 0x22, 0x41, 0x00,
|
||||||
|
0x14, 0x14, 0x14, 0x14, 0x14, 0x00,
|
||||||
|
0x00, 0x41, 0x22, 0x14, 0x08, 0x00,
|
||||||
|
0x02, 0x01, 0x59, 0x09, 0x06, 0x00,
|
||||||
|
0x3E, 0x41, 0x5D, 0x59, 0x4E, 0x00,
|
||||||
|
0x7C, 0x12, 0x11, 0x12, 0x7C, 0x00,
|
||||||
|
0x7F, 0x49, 0x49, 0x49, 0x36, 0x00,
|
||||||
|
0x3E, 0x41, 0x41, 0x41, 0x22, 0x00,
|
||||||
|
0x7F, 0x41, 0x41, 0x41, 0x3E, 0x00,
|
||||||
|
0x7F, 0x49, 0x49, 0x49, 0x41, 0x00,
|
||||||
|
0x7F, 0x09, 0x09, 0x09, 0x01, 0x00,
|
||||||
|
0x3E, 0x41, 0x41, 0x51, 0x73, 0x00,
|
||||||
|
0x7F, 0x08, 0x08, 0x08, 0x7F, 0x00,
|
||||||
|
0x00, 0x41, 0x7F, 0x41, 0x00, 0x00,
|
||||||
|
0x20, 0x40, 0x41, 0x3F, 0x01, 0x00,
|
||||||
|
0x7F, 0x08, 0x14, 0x22, 0x41, 0x00,
|
||||||
|
0x7F, 0x40, 0x40, 0x40, 0x40, 0x00,
|
||||||
|
0x7F, 0x02, 0x1C, 0x02, 0x7F, 0x00,
|
||||||
|
0x7F, 0x04, 0x08, 0x10, 0x7F, 0x00,
|
||||||
|
0x3E, 0x41, 0x41, 0x41, 0x3E, 0x00,
|
||||||
|
0x7F, 0x09, 0x09, 0x09, 0x06, 0x00,
|
||||||
|
0x3E, 0x41, 0x51, 0x21, 0x5E, 0x00,
|
||||||
|
0x7F, 0x09, 0x19, 0x29, 0x46, 0x00,
|
||||||
|
0x26, 0x49, 0x49, 0x49, 0x32, 0x00,
|
||||||
|
0x03, 0x01, 0x7F, 0x01, 0x03, 0x00,
|
||||||
|
0x3F, 0x40, 0x40, 0x40, 0x3F, 0x00,
|
||||||
|
0x1F, 0x20, 0x40, 0x20, 0x1F, 0x00,
|
||||||
|
0x3F, 0x40, 0x38, 0x40, 0x3F, 0x00,
|
||||||
|
0x63, 0x14, 0x08, 0x14, 0x63, 0x00,
|
||||||
|
0x03, 0x04, 0x78, 0x04, 0x03, 0x00,
|
||||||
|
0x61, 0x59, 0x49, 0x4D, 0x43, 0x00,
|
||||||
|
0x00, 0x7F, 0x41, 0x41, 0x41, 0x00,
|
||||||
|
0x02, 0x04, 0x08, 0x10, 0x20, 0x00,
|
||||||
|
0x00, 0x41, 0x41, 0x41, 0x7F, 0x00,
|
||||||
|
0x04, 0x02, 0x01, 0x02, 0x04, 0x00,
|
||||||
|
0x40, 0x40, 0x40, 0x40, 0x40, 0x00,
|
||||||
|
0x00, 0x03, 0x07, 0x08, 0x00, 0x00,
|
||||||
|
0x20, 0x54, 0x54, 0x78, 0x40, 0x00,
|
||||||
|
0x7F, 0x28, 0x44, 0x44, 0x38, 0x00,
|
||||||
|
0x38, 0x44, 0x44, 0x44, 0x28, 0x00,
|
||||||
|
0x38, 0x44, 0x44, 0x28, 0x7F, 0x00,
|
||||||
|
0x38, 0x54, 0x54, 0x54, 0x18, 0x00,
|
||||||
|
0x00, 0x08, 0x7E, 0x09, 0x02, 0x00,
|
||||||
|
0x18, 0xA4, 0xA4, 0x9C, 0x78, 0x00,
|
||||||
|
0x7F, 0x08, 0x04, 0x04, 0x78, 0x00,
|
||||||
|
0x00, 0x44, 0x7D, 0x40, 0x00, 0x00,
|
||||||
|
0x20, 0x40, 0x40, 0x3D, 0x00, 0x00,
|
||||||
|
0x7F, 0x10, 0x28, 0x44, 0x00, 0x00,
|
||||||
|
0x00, 0x41, 0x7F, 0x40, 0x00, 0x00,
|
||||||
|
0x7C, 0x04, 0x78, 0x04, 0x78, 0x00,
|
||||||
|
0x7C, 0x08, 0x04, 0x04, 0x78, 0x00,
|
||||||
|
0x38, 0x44, 0x44, 0x44, 0x38, 0x00,
|
||||||
|
0xFC, 0x18, 0x24, 0x24, 0x18, 0x00,
|
||||||
|
0x18, 0x24, 0x24, 0x18, 0xFC, 0x00,
|
||||||
|
0x7C, 0x08, 0x04, 0x04, 0x08, 0x00,
|
||||||
|
0x48, 0x54, 0x54, 0x54, 0x24, 0x00,
|
||||||
|
0x04, 0x04, 0x3F, 0x44, 0x24, 0x00,
|
||||||
|
0x3C, 0x40, 0x40, 0x20, 0x7C, 0x00,
|
||||||
|
0x1C, 0x20, 0x40, 0x20, 0x1C, 0x00,
|
||||||
|
0x3C, 0x40, 0x30, 0x40, 0x3C, 0x00,
|
||||||
|
0x44, 0x28, 0x10, 0x28, 0x44, 0x00,
|
||||||
|
0x4C, 0x90, 0x90, 0x90, 0x7C, 0x00,
|
||||||
|
0x44, 0x64, 0x54, 0x4C, 0x44, 0x00,
|
||||||
|
0x00, 0x08, 0x36, 0x41, 0x00, 0x00,
|
||||||
|
0x00, 0x00, 0x77, 0x00, 0x00, 0x00,
|
||||||
|
0x00, 0x41, 0x36, 0x08, 0x00, 0x00,
|
||||||
|
0x02, 0x01, 0x02, 0x04, 0x02, 0x00,
|
||||||
|
0x3C, 0x26, 0x23, 0x26, 0x3C, 0x00
|
||||||
|
};
|
||||||
|
#endif // FONT5X7_H
|
||||||
15
keyboards/comet46/lib/host_led_state_reader.c
Normal file
15
keyboards/comet46/lib/host_led_state_reader.c
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
#include "comet46.h"
|
||||||
|
|
||||||
|
char host_led_state_str[22];
|
||||||
|
|
||||||
|
const char *read_host_led_state(void) {
|
||||||
|
uint8_t leds = host_keyboard_leds();
|
||||||
|
|
||||||
|
snprintf(host_led_state_str, sizeof(host_led_state_str), "Lock: %s%s%s",
|
||||||
|
(leds & (1 << USB_LED_CAPS_LOCK)) ? "CAPL " : "",
|
||||||
|
(leds & (1 << USB_LED_SCROLL_LOCK)) ? "SCRL " : "",
|
||||||
|
(leds & (1 << USB_LED_NUM_LOCK)) ? "NUML" : "");
|
||||||
|
|
||||||
|
return host_led_state_str;
|
||||||
|
}
|
||||||
294
keyboards/comet46/lib/keylogger.c
Normal file
294
keyboards/comet46/lib/keylogger.c
Normal file
@@ -0,0 +1,294 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
|
#ifdef __AVR__
|
||||||
|
#include <avr/io.h>
|
||||||
|
#include <avr/pgmspace.h>
|
||||||
|
#else
|
||||||
|
#define PROGMEM
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define NUM_USB_HID_KEYCODES 255
|
||||||
|
#define LEN_KEYCODE_STR 4
|
||||||
|
|
||||||
|
char keylog[22] = {"KC: ID: "};
|
||||||
|
|
||||||
|
// Quick and dirty way to display USB HID keycodes used in QMK
|
||||||
|
// USB HID keycodes from 0x0000 to 0x00FF are stored in a 4x256+1 length char
|
||||||
|
const char code_to_name[] PROGMEM = {
|
||||||
|
"NO " //0x00
|
||||||
|
"TRNS"
|
||||||
|
"? "
|
||||||
|
"? "
|
||||||
|
"A "
|
||||||
|
"B "
|
||||||
|
"C "
|
||||||
|
"D "
|
||||||
|
"E "
|
||||||
|
"F "
|
||||||
|
"G "
|
||||||
|
"H "
|
||||||
|
"I "
|
||||||
|
"J "
|
||||||
|
"K "
|
||||||
|
"L "
|
||||||
|
"M " //0x10
|
||||||
|
"N "
|
||||||
|
"O "
|
||||||
|
"P "
|
||||||
|
"Q "
|
||||||
|
"R "
|
||||||
|
"S "
|
||||||
|
"T "
|
||||||
|
"U "
|
||||||
|
"V "
|
||||||
|
"W "
|
||||||
|
"X "
|
||||||
|
"Y "
|
||||||
|
"Z "
|
||||||
|
"1 "
|
||||||
|
"2 "
|
||||||
|
"3 " //0x20
|
||||||
|
"4 "
|
||||||
|
"5 "
|
||||||
|
"6 "
|
||||||
|
"7 "
|
||||||
|
"8 "
|
||||||
|
"9 "
|
||||||
|
"0 "
|
||||||
|
"ENT "
|
||||||
|
"ESC "
|
||||||
|
"BSPC"
|
||||||
|
"TAB "
|
||||||
|
"SPC "
|
||||||
|
"MINS"
|
||||||
|
"EQL "
|
||||||
|
"LBRC"
|
||||||
|
"RBRC" //0x30
|
||||||
|
"BSLS"
|
||||||
|
"NUHS"
|
||||||
|
"SCLN"
|
||||||
|
"QUOT"
|
||||||
|
"GRV "
|
||||||
|
"COMM"
|
||||||
|
"DOT "
|
||||||
|
"SLSH"
|
||||||
|
"CAPS"
|
||||||
|
"F1 "
|
||||||
|
"F2 "
|
||||||
|
"F3 "
|
||||||
|
"F4 "
|
||||||
|
"F5 "
|
||||||
|
"F6 "
|
||||||
|
"F7 " //0x40
|
||||||
|
"F8 "
|
||||||
|
"F9 "
|
||||||
|
"F10 "
|
||||||
|
"F11 "
|
||||||
|
"F12 "
|
||||||
|
"PSCR"
|
||||||
|
"SLCK"
|
||||||
|
"PAUS"
|
||||||
|
"INS "
|
||||||
|
"HOME"
|
||||||
|
"PGUP"
|
||||||
|
"DEL "
|
||||||
|
"END "
|
||||||
|
"PGDN"
|
||||||
|
"RGHT"
|
||||||
|
"LEFT" //0x50
|
||||||
|
"DOWN"
|
||||||
|
"UP "
|
||||||
|
"NLCK"
|
||||||
|
"PSLS"
|
||||||
|
"PAST"
|
||||||
|
"PMNS"
|
||||||
|
"PPLS"
|
||||||
|
"PENT"
|
||||||
|
"P1 "
|
||||||
|
"P2 "
|
||||||
|
"P3 "
|
||||||
|
"P4 "
|
||||||
|
"P5 "
|
||||||
|
"P6 "
|
||||||
|
"P7 "
|
||||||
|
"P8 " //0x60
|
||||||
|
"P9 "
|
||||||
|
"P0 "
|
||||||
|
"PDOT"
|
||||||
|
"NUBS"
|
||||||
|
"APP "
|
||||||
|
"POW "
|
||||||
|
"PEQL"
|
||||||
|
"F13 "
|
||||||
|
"F14 "
|
||||||
|
"F15 "
|
||||||
|
"F16 "
|
||||||
|
"F17 "
|
||||||
|
"F18 "
|
||||||
|
"F19 "
|
||||||
|
"F20 "
|
||||||
|
"F21 " //0x70
|
||||||
|
"F22 "
|
||||||
|
"F23 "
|
||||||
|
"F24 "
|
||||||
|
"EXEC"
|
||||||
|
"HELP"
|
||||||
|
"MENU"
|
||||||
|
"SLCT"
|
||||||
|
"STOP"
|
||||||
|
"AGIN"
|
||||||
|
"UNDO"
|
||||||
|
"CUT "
|
||||||
|
"COPY"
|
||||||
|
"PSTE"
|
||||||
|
"FIND"
|
||||||
|
"_MUT"
|
||||||
|
"_VUP" //0x80
|
||||||
|
"_VDN"
|
||||||
|
"LCAP"
|
||||||
|
"LNUM"
|
||||||
|
"LSCR"
|
||||||
|
"PCMM"
|
||||||
|
"PEQA"
|
||||||
|
"INT1"
|
||||||
|
"INT2"
|
||||||
|
"INT3"
|
||||||
|
"INT4"
|
||||||
|
"INT5"
|
||||||
|
"INT6"
|
||||||
|
"INT7"
|
||||||
|
"INT8"
|
||||||
|
"INT9"
|
||||||
|
"LAN1" //0x90
|
||||||
|
"LAN2"
|
||||||
|
"LAN3"
|
||||||
|
"LAN4"
|
||||||
|
"LAN5"
|
||||||
|
"LAN6"
|
||||||
|
"LAN7"
|
||||||
|
"LAN8"
|
||||||
|
"LAN9"
|
||||||
|
"ERAS"
|
||||||
|
"SYSR"
|
||||||
|
"CNCL"
|
||||||
|
"CLR "
|
||||||
|
"PRIR"
|
||||||
|
"RTRN"
|
||||||
|
"SEP "
|
||||||
|
"OUT " //0xA0
|
||||||
|
"OPER"
|
||||||
|
"CLRA"
|
||||||
|
"CSEL"
|
||||||
|
"ESEL"
|
||||||
|
"PWR " //0xA5
|
||||||
|
"SLEP"
|
||||||
|
"WAKE"
|
||||||
|
"MUTE"
|
||||||
|
"VOLU"
|
||||||
|
"VOLD"
|
||||||
|
"MNXT"
|
||||||
|
"MPRV"
|
||||||
|
"MSTP"
|
||||||
|
"MPLY"
|
||||||
|
"MSEL"
|
||||||
|
"EJCT" //0xB0
|
||||||
|
"MAIL"
|
||||||
|
"CALC"
|
||||||
|
"MYCM"
|
||||||
|
"WSCH"
|
||||||
|
"WHOM"
|
||||||
|
"WBAK"
|
||||||
|
"WFWD"
|
||||||
|
"WSTP"
|
||||||
|
"WREF"
|
||||||
|
"WFAV"
|
||||||
|
"MFFD"
|
||||||
|
"MRWD"
|
||||||
|
"BRIU"
|
||||||
|
"BRID"
|
||||||
|
"? "
|
||||||
|
"FN0 " //0xC0
|
||||||
|
"FN1 "
|
||||||
|
"FN2 "
|
||||||
|
"FN3 "
|
||||||
|
"FN4 "
|
||||||
|
"FN5 "
|
||||||
|
"FN6 "
|
||||||
|
"FN7 "
|
||||||
|
"FN8 "
|
||||||
|
"FN9 "
|
||||||
|
"FN10"
|
||||||
|
"FN11"
|
||||||
|
"FN12"
|
||||||
|
"FN13"
|
||||||
|
"FN14"
|
||||||
|
"FN15"
|
||||||
|
"FN16" //0xD0
|
||||||
|
"FN17"
|
||||||
|
"FN18"
|
||||||
|
"FN19"
|
||||||
|
"FN20"
|
||||||
|
"FN21"
|
||||||
|
"FN22"
|
||||||
|
"FN23"
|
||||||
|
"FN24"
|
||||||
|
"FN25"
|
||||||
|
"FN26"
|
||||||
|
"FN27"
|
||||||
|
"FN28"
|
||||||
|
"FN29"
|
||||||
|
"FN30"
|
||||||
|
"FN31"
|
||||||
|
"LCTL" //0xE0
|
||||||
|
"LSFT"
|
||||||
|
"LALT"
|
||||||
|
"LGUI"
|
||||||
|
"RCTL"
|
||||||
|
"RSFT"
|
||||||
|
"RALT"
|
||||||
|
"RGUI"
|
||||||
|
"? "
|
||||||
|
"? "
|
||||||
|
"? "
|
||||||
|
"? "
|
||||||
|
"? "
|
||||||
|
"? "
|
||||||
|
"? "
|
||||||
|
"? "
|
||||||
|
"MS_U" //0xF0
|
||||||
|
"MS_D"
|
||||||
|
"MS_L"
|
||||||
|
"MS_R"
|
||||||
|
"BTN1"
|
||||||
|
"BTN2"
|
||||||
|
"BTN3"
|
||||||
|
"BTN4"
|
||||||
|
"BTN5"
|
||||||
|
"WH_U"
|
||||||
|
"WH_D"
|
||||||
|
"WH_L"
|
||||||
|
"WH_R"
|
||||||
|
"ACL0"
|
||||||
|
"ACL1"
|
||||||
|
"ACL2"
|
||||||
|
};
|
||||||
|
|
||||||
|
void set_keylog(uint16_t keycode)
|
||||||
|
{
|
||||||
|
char name[LEN_KEYCODE_STR+1] = "? ";
|
||||||
|
|
||||||
|
if (keycode <= NUM_USB_HID_KEYCODES) {
|
||||||
|
for (uint8_t k = 0; k < LEN_KEYCODE_STR; k++) {
|
||||||
|
name[k] = pgm_read_byte_near(code_to_name + keycode * LEN_KEYCODE_STR + k);
|
||||||
|
}
|
||||||
|
} else if (keycode > NUM_USB_HID_KEYCODES) {
|
||||||
|
snprintf(name, sizeof(name), "QMK ");
|
||||||
|
}
|
||||||
|
|
||||||
|
// update keylog
|
||||||
|
snprintf(keylog, sizeof(keylog), "KC: %s ID: %d", name, keycode);
|
||||||
|
}
|
||||||
|
|
||||||
|
const char *read_keylog(void) {
|
||||||
|
return keylog;
|
||||||
|
}
|
||||||
18
keyboards/comet46/lib/modifier_state_reader.c
Normal file
18
keyboards/comet46/lib/modifier_state_reader.c
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
#include "comet46.h"
|
||||||
|
|
||||||
|
char modifier_state_str[22];
|
||||||
|
|
||||||
|
const char *read_modifier_state(void) {
|
||||||
|
uint8_t modifiers = get_mods();
|
||||||
|
uint8_t one_shot = get_oneshot_mods();
|
||||||
|
|
||||||
|
snprintf(modifier_state_str, sizeof(modifier_state_str), "Mod: %s%s%s%s",
|
||||||
|
(modifiers & MODS_CTRL_MASK || one_shot & MODS_CTRL_MASK) ? "CTL " : "",
|
||||||
|
(modifiers & MODS_GUI_MASK || one_shot & MODS_GUI_MASK) ? "GUI " : "",
|
||||||
|
(modifiers & MODS_ALT_MASK || one_shot & MODS_ALT_MASK) ? "ALT " : "",
|
||||||
|
(modifiers & MODS_SHIFT_MASK || one_shot & MODS_SHIFT_MASK) ? "SFT" : ""
|
||||||
|
);
|
||||||
|
|
||||||
|
return modifier_state_str;
|
||||||
|
}
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
# Comet46
|
# Comet46
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
A split wireless 40% column-staggered keyboard
|
A split wireless 40% column-staggered keyboard
|
||||||
|
|
||||||
@@ -13,4 +13,5 @@ Make example for this keyboard (after setting up your build environment):
|
|||||||
|
|
||||||
make comet46:default
|
make comet46:default
|
||||||
|
|
||||||
See [build environment setup](https://docs.qmk.fm/build_environment_setup.html) then the [make instructions](https://docs.qmk.fm/make_instructions.html) for more information.
|
See [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) then the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information.
|
||||||
|
|
||||||
|
|||||||
@@ -1,12 +1,8 @@
|
|||||||
|
|
||||||
OPT_DEFS += -DCOMET46_ORTHO_===PROMICRO
|
|
||||||
COMET46_UPLOAD_COMMAND = while [ ! -r $(USB) ]; do sleep 1; done; \
|
|
||||||
avrdude -p $(MCU) -c avr109 -U flash:w:$(TARGET).hex -P $(USB)
|
|
||||||
|
|
||||||
# # project specific files
|
# # project specific files
|
||||||
SRC = matrix.c
|
SRC += matrix.c \
|
||||||
|
i2c.c \
|
||||||
|
ssd1306.c
|
||||||
|
|
||||||
# MCU name
|
# MCU name
|
||||||
#MCU = at90usb1287
|
#MCU = at90usb1287
|
||||||
MCU = atmega32u4
|
MCU = atmega32u4
|
||||||
@@ -24,8 +20,6 @@ MCU = atmega32u4
|
|||||||
# software delays.
|
# software delays.
|
||||||
F_CPU = 16000000
|
F_CPU = 16000000
|
||||||
|
|
||||||
|
|
||||||
#
|
|
||||||
# LUFA specific
|
# LUFA specific
|
||||||
#
|
#
|
||||||
# Target architecture (see library "Board Types" documentation).
|
# Target architecture (see library "Board Types" documentation).
|
||||||
@@ -48,7 +42,7 @@ F_USB = $(F_CPU)
|
|||||||
# This definition is optional, and if your keyboard supports multiple bootloaders of
|
# This definition is optional, and if your keyboard supports multiple bootloaders of
|
||||||
# different sizes, comment this out, and the correct address will be loaded
|
# different sizes, comment this out, and the correct address will be loaded
|
||||||
# automatically (+60). See bootloader.mk for all options.
|
# automatically (+60). See bootloader.mk for all options.
|
||||||
BOOTLOADER = caterina
|
# BOOTLOADER = caterina
|
||||||
|
|
||||||
# Interrupt driven control endpoint task(+60)
|
# Interrupt driven control endpoint task(+60)
|
||||||
OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT
|
OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT
|
||||||
|
|||||||
344
keyboards/comet46/ssd1306.c
Normal file
344
keyboards/comet46/ssd1306.c
Normal file
@@ -0,0 +1,344 @@
|
|||||||
|
#ifdef SSD1306OLED
|
||||||
|
|
||||||
|
#include "ssd1306.h"
|
||||||
|
#include "i2c.h"
|
||||||
|
#include <string.h>
|
||||||
|
#include "print.h"
|
||||||
|
#ifdef ADAFRUIT_BLE_ENABLE
|
||||||
|
#include "adafruit_ble.h"
|
||||||
|
#endif
|
||||||
|
#ifdef PROTOCOL_LUFA
|
||||||
|
#include "lufa.h"
|
||||||
|
#endif
|
||||||
|
#include "sendchar.h"
|
||||||
|
#include "timer.h"
|
||||||
|
|
||||||
|
static const unsigned char font[] PROGMEM;
|
||||||
|
|
||||||
|
// Set this to 1 to help diagnose early startup problems
|
||||||
|
// when testing power-on with ble. Turn it off otherwise,
|
||||||
|
// as the latency of printing most of the debug info messes
|
||||||
|
// with the matrix scan, causing keys to drop.
|
||||||
|
#define DEBUG_TO_SCREEN 0
|
||||||
|
|
||||||
|
//static uint16_t last_battery_update;
|
||||||
|
//static uint32_t vbat;
|
||||||
|
//#define BatteryUpdateInterval 10000 /* milliseconds */
|
||||||
|
|
||||||
|
// 'last_flush' is declared as uint16_t,
|
||||||
|
// so this must be less than 65535
|
||||||
|
#define ScreenOffInterval 60000 /* milliseconds */
|
||||||
|
#if DEBUG_TO_SCREEN
|
||||||
|
static uint8_t displaying;
|
||||||
|
#endif
|
||||||
|
static uint16_t last_flush;
|
||||||
|
|
||||||
|
static bool force_dirty = true;
|
||||||
|
|
||||||
|
// Write command sequence.
|
||||||
|
// Returns true on success.
|
||||||
|
static inline bool _send_cmd1(uint8_t cmd) {
|
||||||
|
bool res = false;
|
||||||
|
|
||||||
|
if (i2c_start_write(SSD1306_ADDRESS)) {
|
||||||
|
xprintf("failed to start write to %d\n", SSD1306_ADDRESS);
|
||||||
|
goto done;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (i2c_master_write(0x0 /* command byte follows */)) {
|
||||||
|
print("failed to write control byte\n");
|
||||||
|
|
||||||
|
goto done;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (i2c_master_write(cmd)) {
|
||||||
|
xprintf("failed to write command %d\n", cmd);
|
||||||
|
goto done;
|
||||||
|
}
|
||||||
|
res = true;
|
||||||
|
done:
|
||||||
|
i2c_master_stop();
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Write 2-byte command sequence.
|
||||||
|
// Returns true on success
|
||||||
|
static inline bool _send_cmd2(uint8_t cmd, uint8_t opr) {
|
||||||
|
if (!_send_cmd1(cmd)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return _send_cmd1(opr);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Write 3-byte command sequence.
|
||||||
|
// Returns true on success
|
||||||
|
static inline bool _send_cmd3(uint8_t cmd, uint8_t opr1, uint8_t opr2) {
|
||||||
|
if (!_send_cmd1(cmd)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (!_send_cmd1(opr1)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return _send_cmd1(opr2);
|
||||||
|
}
|
||||||
|
|
||||||
|
#define send_cmd1(c) if (!_send_cmd1(c)) {goto done;}
|
||||||
|
#define send_cmd2(c,o) if (!_send_cmd2(c,o)) {goto done;}
|
||||||
|
#define send_cmd3(c,o1,o2) if (!_send_cmd3(c,o1,o2)) {goto done;}
|
||||||
|
|
||||||
|
static void clear_display(void) {
|
||||||
|
matrix_clear(&display);
|
||||||
|
|
||||||
|
// Clear all of the display bits (there can be random noise
|
||||||
|
// in the RAM on startup)
|
||||||
|
send_cmd3(PageAddr, 0, (DisplayHeight / 8) - 1);
|
||||||
|
send_cmd3(ColumnAddr, 0, DisplayWidth - 1);
|
||||||
|
|
||||||
|
if (i2c_start_write(SSD1306_ADDRESS)) {
|
||||||
|
goto done;
|
||||||
|
}
|
||||||
|
if (i2c_master_write(0x40)) {
|
||||||
|
// Data mode
|
||||||
|
goto done;
|
||||||
|
}
|
||||||
|
for (uint8_t row = 0; row < MatrixRows; ++row) {
|
||||||
|
for (uint8_t col = 0; col < DisplayWidth; ++col) {
|
||||||
|
i2c_master_write(0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
display.dirty = false;
|
||||||
|
|
||||||
|
done:
|
||||||
|
i2c_master_stop();
|
||||||
|
}
|
||||||
|
|
||||||
|
#if DEBUG_TO_SCREEN
|
||||||
|
#undef sendchar
|
||||||
|
static int8_t capture_sendchar(uint8_t c) {
|
||||||
|
sendchar(c);
|
||||||
|
iota_gfx_write_char(c);
|
||||||
|
|
||||||
|
if (!displaying) {
|
||||||
|
iota_gfx_flush();
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
bool iota_gfx_init(bool rotate) {
|
||||||
|
bool success = false;
|
||||||
|
|
||||||
|
i2c_master_init();
|
||||||
|
send_cmd1(DisplayOff);
|
||||||
|
send_cmd2(SetDisplayClockDiv, 0x80);
|
||||||
|
send_cmd2(SetMultiPlex, DisplayHeight - 1);
|
||||||
|
|
||||||
|
send_cmd2(SetDisplayOffset, 0);
|
||||||
|
|
||||||
|
|
||||||
|
send_cmd1(SetStartLine | 0x0);
|
||||||
|
send_cmd2(SetChargePump, 0x14 /* Enable */);
|
||||||
|
send_cmd2(SetMemoryMode, 0 /* horizontal addressing */);
|
||||||
|
|
||||||
|
if(rotate){
|
||||||
|
// the following Flip the display orientation 180 degrees
|
||||||
|
send_cmd1(SegRemap);
|
||||||
|
send_cmd1(ComScanInc);
|
||||||
|
}else{
|
||||||
|
// Flips the display orientation 0 degrees
|
||||||
|
send_cmd1(SegRemap | 0x1);
|
||||||
|
send_cmd1(ComScanDec);
|
||||||
|
}
|
||||||
|
|
||||||
|
send_cmd2(SetComPins, 0x2);
|
||||||
|
send_cmd2(SetContrast, 0x8f);
|
||||||
|
send_cmd2(SetPreCharge, 0xf1);
|
||||||
|
send_cmd2(SetVComDetect, 0x40);
|
||||||
|
send_cmd1(DisplayAllOnResume);
|
||||||
|
send_cmd1(NormalDisplay);
|
||||||
|
send_cmd1(DeActivateScroll);
|
||||||
|
send_cmd1(DisplayOn);
|
||||||
|
|
||||||
|
send_cmd2(SetContrast, 0); // Dim
|
||||||
|
|
||||||
|
clear_display();
|
||||||
|
|
||||||
|
success = true;
|
||||||
|
|
||||||
|
iota_gfx_flush();
|
||||||
|
|
||||||
|
#if DEBUG_TO_SCREEN
|
||||||
|
print_set_sendchar(capture_sendchar);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
done:
|
||||||
|
return success;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool iota_gfx_off(void) {
|
||||||
|
bool success = false;
|
||||||
|
|
||||||
|
send_cmd1(DisplayOff);
|
||||||
|
success = true;
|
||||||
|
|
||||||
|
done:
|
||||||
|
return success;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool iota_gfx_on(void) {
|
||||||
|
bool success = false;
|
||||||
|
|
||||||
|
send_cmd1(DisplayOn);
|
||||||
|
success = true;
|
||||||
|
|
||||||
|
done:
|
||||||
|
return success;
|
||||||
|
}
|
||||||
|
|
||||||
|
void matrix_write_char_inner(struct CharacterMatrix *matrix, uint8_t c) {
|
||||||
|
*matrix->cursor = c;
|
||||||
|
++matrix->cursor;
|
||||||
|
|
||||||
|
if (matrix->cursor - &matrix->display[0][0] == sizeof(matrix->display)) {
|
||||||
|
// We went off the end; scroll the display upwards by one line
|
||||||
|
memmove(&matrix->display[0], &matrix->display[1],
|
||||||
|
MatrixCols * (MatrixRows - 1));
|
||||||
|
matrix->cursor = &matrix->display[MatrixRows - 1][0];
|
||||||
|
memset(matrix->cursor, ' ', MatrixCols);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void matrix_write_char(struct CharacterMatrix *matrix, uint8_t c) {
|
||||||
|
matrix->dirty = true;
|
||||||
|
|
||||||
|
if (c == '\n') {
|
||||||
|
// Clear to end of line from the cursor and then move to the
|
||||||
|
// start of the next line
|
||||||
|
uint8_t cursor_col = (matrix->cursor - &matrix->display[0][0]) % MatrixCols;
|
||||||
|
|
||||||
|
while (cursor_col++ < MatrixCols) {
|
||||||
|
matrix_write_char_inner(matrix, ' ');
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
matrix_write_char_inner(matrix, c);
|
||||||
|
}
|
||||||
|
|
||||||
|
void iota_gfx_write_char(uint8_t c) {
|
||||||
|
matrix_write_char(&display, c);
|
||||||
|
}
|
||||||
|
|
||||||
|
void matrix_write(struct CharacterMatrix *matrix, const char *data) {
|
||||||
|
const char *end = data + strlen(data);
|
||||||
|
while (data < end) {
|
||||||
|
matrix_write_char(matrix, *data);
|
||||||
|
++data;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void matrix_write_ln(struct CharacterMatrix *matrix, const char *data) {
|
||||||
|
char data_ln[strlen(data)+2];
|
||||||
|
snprintf(data_ln, sizeof(data_ln), "%s\n", data);
|
||||||
|
matrix_write(matrix, data_ln);
|
||||||
|
}
|
||||||
|
|
||||||
|
void iota_gfx_write(const char *data) {
|
||||||
|
matrix_write(&display, data);
|
||||||
|
}
|
||||||
|
|
||||||
|
void matrix_write_P(struct CharacterMatrix *matrix, const char *data) {
|
||||||
|
while (true) {
|
||||||
|
uint8_t c = pgm_read_byte(data);
|
||||||
|
if (c == 0) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
matrix_write_char(matrix, c);
|
||||||
|
++data;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void iota_gfx_write_P(const char *data) {
|
||||||
|
matrix_write_P(&display, data);
|
||||||
|
}
|
||||||
|
|
||||||
|
void matrix_clear(struct CharacterMatrix *matrix) {
|
||||||
|
memset(matrix->display, ' ', sizeof(matrix->display));
|
||||||
|
matrix->cursor = &matrix->display[0][0];
|
||||||
|
matrix->dirty = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
void iota_gfx_clear_screen(void) {
|
||||||
|
matrix_clear(&display);
|
||||||
|
}
|
||||||
|
|
||||||
|
void matrix_render(struct CharacterMatrix *matrix) {
|
||||||
|
last_flush = timer_read();
|
||||||
|
iota_gfx_on();
|
||||||
|
#if DEBUG_TO_SCREEN
|
||||||
|
++displaying;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// Move to the home position
|
||||||
|
send_cmd3(PageAddr, 0, MatrixRows - 1);
|
||||||
|
send_cmd3(ColumnAddr, 0, (MatrixCols * FontWidth) - 1);
|
||||||
|
|
||||||
|
if (i2c_start_write(SSD1306_ADDRESS)) {
|
||||||
|
goto done;
|
||||||
|
}
|
||||||
|
if (i2c_master_write(0x40)) {
|
||||||
|
// Data mode
|
||||||
|
goto done;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (uint8_t row = 0; row < MatrixRows; ++row) {
|
||||||
|
for (uint8_t col = 0; col < MatrixCols; ++col) {
|
||||||
|
const uint8_t *glyph = font + (matrix->display[row][col] * FontWidth);
|
||||||
|
|
||||||
|
for (uint8_t glyphCol = 0; glyphCol < FontWidth; ++glyphCol) {
|
||||||
|
uint8_t colBits = pgm_read_byte(glyph + glyphCol);
|
||||||
|
i2c_master_write(colBits);
|
||||||
|
}
|
||||||
|
|
||||||
|
// 1 column of space between chars (it's not included in the glyph)
|
||||||
|
//i2c_master_write(0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
matrix->dirty = false;
|
||||||
|
|
||||||
|
done:
|
||||||
|
i2c_master_stop();
|
||||||
|
#if DEBUG_TO_SCREEN
|
||||||
|
--displaying;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
void iota_gfx_flush(void) {
|
||||||
|
matrix_render(&display);
|
||||||
|
}
|
||||||
|
|
||||||
|
__attribute__ ((weak))
|
||||||
|
void iota_gfx_task_user(void) {
|
||||||
|
}
|
||||||
|
|
||||||
|
void iota_gfx_task(void) {
|
||||||
|
iota_gfx_task_user();
|
||||||
|
|
||||||
|
if (display.dirty|| force_dirty) {
|
||||||
|
iota_gfx_flush();
|
||||||
|
force_dirty = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (timer_elapsed(last_flush) > ScreenOffInterval) {
|
||||||
|
iota_gfx_off();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
bool process_record_gfx(uint16_t keycode, keyrecord_t *record) {
|
||||||
|
force_dirty = true;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
||||||
91
keyboards/comet46/ssd1306.h
Normal file
91
keyboards/comet46/ssd1306.h
Normal file
@@ -0,0 +1,91 @@
|
|||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include <stdbool.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
#include "pincontrol.h"
|
||||||
|
#include "action.h"
|
||||||
|
|
||||||
|
enum ssd1306_cmds {
|
||||||
|
DisplayOff = 0xAE,
|
||||||
|
DisplayOn = 0xAF,
|
||||||
|
|
||||||
|
SetContrast = 0x81,
|
||||||
|
DisplayAllOnResume = 0xA4,
|
||||||
|
|
||||||
|
DisplayAllOn = 0xA5,
|
||||||
|
NormalDisplay = 0xA6,
|
||||||
|
InvertDisplay = 0xA7,
|
||||||
|
SetDisplayOffset = 0xD3,
|
||||||
|
SetComPins = 0xda,
|
||||||
|
SetVComDetect = 0xdb,
|
||||||
|
SetDisplayClockDiv = 0xD5,
|
||||||
|
SetPreCharge = 0xd9,
|
||||||
|
SetMultiPlex = 0xa8,
|
||||||
|
SetLowColumn = 0x00,
|
||||||
|
SetHighColumn = 0x10,
|
||||||
|
SetStartLine = 0x40,
|
||||||
|
|
||||||
|
SetMemoryMode = 0x20,
|
||||||
|
ColumnAddr = 0x21,
|
||||||
|
PageAddr = 0x22,
|
||||||
|
|
||||||
|
ComScanInc = 0xc0,
|
||||||
|
ComScanDec = 0xc8,
|
||||||
|
SegRemap = 0xa0,
|
||||||
|
SetChargePump = 0x8d,
|
||||||
|
ExternalVcc = 0x01,
|
||||||
|
SwitchCapVcc = 0x02,
|
||||||
|
|
||||||
|
ActivateScroll = 0x2f,
|
||||||
|
DeActivateScroll = 0x2e,
|
||||||
|
SetVerticalScrollArea = 0xa3,
|
||||||
|
RightHorizontalScroll = 0x26,
|
||||||
|
LeftHorizontalScroll = 0x27,
|
||||||
|
VerticalAndRightHorizontalScroll = 0x29,
|
||||||
|
VerticalAndLeftHorizontalScroll = 0x2a,
|
||||||
|
};
|
||||||
|
|
||||||
|
// Controls the SSD1306 128x32 OLED display via i2c
|
||||||
|
|
||||||
|
#ifndef SSD1306_ADDRESS
|
||||||
|
#define SSD1306_ADDRESS 0x3C
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define DisplayHeight 32
|
||||||
|
#define DisplayWidth 128
|
||||||
|
|
||||||
|
#define FontHeight 8
|
||||||
|
#define FontWidth 6
|
||||||
|
|
||||||
|
#define MatrixRows (DisplayHeight / FontHeight)
|
||||||
|
#define MatrixCols (DisplayWidth / FontWidth)
|
||||||
|
|
||||||
|
struct CharacterMatrix {
|
||||||
|
uint8_t display[MatrixRows][MatrixCols];
|
||||||
|
uint8_t *cursor;
|
||||||
|
bool dirty;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct CharacterMatrix display;
|
||||||
|
|
||||||
|
bool iota_gfx_init(bool rotate);
|
||||||
|
void iota_gfx_task(void);
|
||||||
|
bool iota_gfx_off(void);
|
||||||
|
bool iota_gfx_on(void);
|
||||||
|
void iota_gfx_flush(void);
|
||||||
|
void iota_gfx_write_char(uint8_t c);
|
||||||
|
void iota_gfx_write(const char *data);
|
||||||
|
void iota_gfx_write_P(const char *data);
|
||||||
|
void iota_gfx_clear_screen(void);
|
||||||
|
|
||||||
|
void iota_gfx_task_user(void);
|
||||||
|
|
||||||
|
void matrix_clear(struct CharacterMatrix *matrix);
|
||||||
|
void matrix_write_char_inner(struct CharacterMatrix *matrix, uint8_t c);
|
||||||
|
void matrix_write_char(struct CharacterMatrix *matrix, uint8_t c);
|
||||||
|
void matrix_write(struct CharacterMatrix *matrix, const char *data);
|
||||||
|
void matrix_write_ln(struct CharacterMatrix *matrix, const char *data);
|
||||||
|
void matrix_write_P(struct CharacterMatrix *matrix, const char *data);
|
||||||
|
void matrix_render(struct CharacterMatrix *matrix);
|
||||||
|
|
||||||
|
bool process_record_gfx(uint16_t keycode, keyrecord_t *record);
|
||||||
@@ -127,11 +127,11 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
|||||||
return true;
|
return true;
|
||||||
case NR_L3:
|
case NR_L3:
|
||||||
if (record->event.pressed) {
|
if (record->event.pressed) {
|
||||||
register_code(DE_ALGR);
|
register_code(KC_ALGR);
|
||||||
layer_on(_NUMROW_L3);
|
layer_on(_NUMROW_L3);
|
||||||
} else {
|
} else {
|
||||||
layer_off(_NUMROW_L3);
|
layer_off(_NUMROW_L3);
|
||||||
unregister_code(DE_ALGR);
|
unregister_code(KC_ALGR);
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
default:
|
default:
|
||||||
|
|||||||
@@ -88,16 +88,18 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
void matrix_init_keymap(void) {
|
void matrix_init_keymap(void) {
|
||||||
//SSD1306 OLED init, make sure to add #define SSD1306OLED in config.h
|
//SSD1306 OLED init, make sure to add #define SSD1306OLED in config.h
|
||||||
#ifdef SSD1306OLED
|
#ifdef SSD1306OLED
|
||||||
iota_gfx_init(!has_usb()); // turns on the display
|
iota_gfx_init(!has_usb()); // turns on the display
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
DDRD &= ~(1<<5);
|
#ifndef CONVERT_TO_PROTON_C
|
||||||
PORTD &= ~(1<<5);
|
setPinOutput(D5);
|
||||||
|
writePinHigh(D5);
|
||||||
|
|
||||||
DDRB &= ~(1<<0);
|
setPinOutput(B0);
|
||||||
PORTB &= ~(1<<0);
|
writePinHigh(B0);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
//SSD1306 OLED update loop, make sure to add #define SSD1306OLED in config.h
|
//SSD1306 OLED update loop, make sure to add #define SSD1306OLED in config.h
|
||||||
@@ -126,10 +128,10 @@ const char code_to_name[60] = {
|
|||||||
|
|
||||||
void set_keylog(uint16_t keycode, keyrecord_t *record) {
|
void set_keylog(uint16_t keycode, keyrecord_t *record) {
|
||||||
char name = ' ';
|
char name = ' ';
|
||||||
|
if ((keycode >= QK_MOD_TAP && keycode <= QK_MOD_TAP_MAX) || (keycode >= QK_LAYER_TAP && keycode <= QK_LAYER_TAP_MAX)) { keycode = keycode & 0xFF; }
|
||||||
if (keycode < 60) {
|
if (keycode < 60) {
|
||||||
name = code_to_name[keycode];
|
name = code_to_name[keycode];
|
||||||
}
|
}
|
||||||
|
|
||||||
// update keylog
|
// update keylog
|
||||||
snprintf(keylog_str, sizeof(keylog_str), "%dx%d, k%2d : %c",
|
snprintf(keylog_str, sizeof(keylog_str), "%dx%d, k%2d : %c",
|
||||||
record->event.key.row, record->event.key.col,
|
record->event.key.row, record->event.key.col,
|
||||||
|
|||||||
@@ -1,65 +0,0 @@
|
|||||||
/* Copyright 2018 'mechmerlin'
|
|
||||||
*
|
|
||||||
* 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
|
|
||||||
|
|
||||||
// Defines the keycodes used by our macros in process_record_user
|
|
||||||
enum custom_keycodes {
|
|
||||||
QMKBEST = SAFE_RANGE,
|
|
||||||
QMKURL
|
|
||||||
};
|
|
||||||
|
|
||||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|
||||||
[0] = LAYOUT(
|
|
||||||
KC_ESC, 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_PGDN,
|
|
||||||
KC_LCTL, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_NUHS, KC_RGHT,
|
|
||||||
KC_LSFT, KC_NUBS, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, MO(1), KC_0, KC_UP,
|
|
||||||
KC_CAPS, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(1), KC_LEFT, KC_ENT, KC_DOWN),
|
|
||||||
};
|
|
||||||
|
|
||||||
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
|
||||||
switch (keycode) {
|
|
||||||
case QMKBEST:
|
|
||||||
if (record->event.pressed) {
|
|
||||||
// when keycode QMKBEST is pressed
|
|
||||||
SEND_STRING("QMK is the best thing ever!");
|
|
||||||
} else {
|
|
||||||
// when keycode QMKBEST is released
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case QMKURL:
|
|
||||||
if (record->event.pressed) {
|
|
||||||
// when keycode QMKURL is pressed
|
|
||||||
SEND_STRING("https://qmk.fm/" SS_TAP(X_ENTER));
|
|
||||||
} else {
|
|
||||||
// when keycode QMKURL is released
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
void matrix_init_user(void) {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
void matrix_scan_user(void) {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
void led_set_user(uint8_t usb_led) {
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -23,11 +23,9 @@ void led_init_ports(void) {
|
|||||||
|
|
||||||
void led_set_kb(uint8_t usb_led) {
|
void led_set_kb(uint8_t usb_led) {
|
||||||
if (usb_led & (1 << USB_LED_CAPS_LOCK)) {
|
if (usb_led & (1 << USB_LED_CAPS_LOCK)) {
|
||||||
DDRB |= (1 << 2);
|
|
||||||
PORTB &= ~(1 << 2);
|
PORTB &= ~(1 << 2);
|
||||||
} else {
|
} else {
|
||||||
DDRB &= ~(1 << 2);
|
PORTB |= (1 << 2);
|
||||||
PORTB &= ~(1 << 2);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
led_set_user(usb_led);
|
led_set_user(usb_led);
|
||||||
|
|||||||
@@ -80,7 +80,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|||||||
TG(SYMB), KC_Y, KC_U, KC_I, KC_O, KC_P, NO_AA,
|
TG(SYMB), KC_Y, KC_U, KC_I, KC_O, KC_P, NO_AA,
|
||||||
KC_H, KC_J, KC_K, KC_L, LT(MDIA, NO_OSLH), LT(SYMB, NO_AE),
|
KC_H, KC_J, KC_K, KC_L, LT(MDIA, NO_OSLH), LT(SYMB, NO_AE),
|
||||||
KC_WFWD, KC_N, KC_M, KC_COMM, KC_DOT, NO_MINS, KC_RSPC,
|
KC_WFWD, KC_N, KC_M, KC_COMM, KC_DOT, NO_MINS, KC_RSPC,
|
||||||
KC_SPC, KC_BSPC, NO_ALGR, NO_ASTR, CTL_T(NO_TILD),
|
KC_SPC, KC_BSPC, KC_ALGR, NO_ASTR, CTL_T(NO_TILD),
|
||||||
KC_HOME, NO_CIRC,
|
KC_HOME, NO_CIRC,
|
||||||
KC_PGUP, KC_UP, KC_DOWN,
|
KC_PGUP, KC_UP, KC_DOWN,
|
||||||
KC_LGUI, ALT_T(KC_ESC), CTL_T(KC_ENT)
|
KC_LGUI, ALT_T(KC_ESC), CTL_T(KC_ENT)
|
||||||
|
|||||||
@@ -1,6 +1,10 @@
|
|||||||
#include "../../config.h"
|
#pragma once
|
||||||
|
|
||||||
|
//Force NKRO to be enabled.
|
||||||
|
#define FORCE_NKRO
|
||||||
|
|
||||||
//GRAVE_ESC override for CTRL+SHIFT+ESC Windows task manager shortcut.
|
//GRAVE_ESC override for CTRL+SHIFT+ESC Windows task manager shortcut.
|
||||||
#define GRAVE_ESC_CTRL_OVERRIDE
|
//#define GRAVE_ESC_CTRL_OVERRIDE
|
||||||
|
|
||||||
//Delay matrix scan for tap dance, reduce to activate modifier keys faster.
|
//Delay matrix scan for tap dance, reduce to activate modifier keys faster.
|
||||||
//#define TAPPING_TERM 200
|
//#define TAPPING_TERM 200
|
||||||
|
|||||||
@@ -11,13 +11,16 @@ enum layers {
|
|||||||
_AL, // Adjust Layer
|
_AL, // Adjust Layer
|
||||||
};
|
};
|
||||||
|
|
||||||
enum gonnerd_keycodes {
|
enum custom_keycodes {
|
||||||
DYNAMIC_MACRO_RANGE = SAFE_RANGE,
|
DYNAMIC_MACRO_RANGE = SAFE_RANGE,
|
||||||
|
QMK_REV,
|
||||||
|
KC_WEB,
|
||||||
|
KC_SP4
|
||||||
};
|
};
|
||||||
|
|
||||||
|
extern backlight_config_t backlight_config;
|
||||||
|
|
||||||
#include "dynamic_macro.h"
|
#include "dynamic_macro.h"
|
||||||
#define _______ KC_TRNS
|
|
||||||
#define XXXXXXX KC_NO
|
|
||||||
#define FN_CAPS LT(_FL, KC_CAPS)
|
#define FN_CAPS LT(_FL, KC_CAPS)
|
||||||
#define KC_DMR1 DYN_REC_START1
|
#define KC_DMR1 DYN_REC_START1
|
||||||
#define KC_DMR2 DYN_REC_START2
|
#define KC_DMR2 DYN_REC_START2
|
||||||
@@ -25,47 +28,44 @@ enum gonnerd_keycodes {
|
|||||||
#define KC_DMP2 DYN_MACRO_PLAY2
|
#define KC_DMP2 DYN_MACRO_PLAY2
|
||||||
#define KC_DMRS DYN_REC_STOP
|
#define KC_DMRS DYN_REC_STOP
|
||||||
|
|
||||||
static uint8_t current_layer;
|
|
||||||
|
|
||||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||||
/* _BL: Base Layer, mostly standard TKL QWERTY layout.
|
/*#### _BL: Base Layer - Standard TKL QWERTY layout.
|
||||||
* .-----------------------------------------------------------------------.
|
* .-----------------------------------------------------------------------.
|
||||||
* |Esc||||| F1| F2| F3| F4||| F5| F6| F7| F8||| F9|F10|F11|F12|PSc|SLk|Pau|
|
* |Esc|||||F1 |F2 |F3 |F4 |||F5 |F6 |F7 |F8 |||F9 |F10|F11|F12|PSc|SLk|Pau|
|
||||||
* |-----------------------------------------------------------|-----------|
|
* |-----------------------------------------------------------|-----------|
|
||||||
* | ~| 1| 2| 3| 4| 5| 6| 7| 8| 9| 0| -| =|Backsp |Ins|Hom|PgU|
|
* |~ |1 |2 |3 |4 |5 |6 |7 |8 |9 |0 |- |= |Backsp |Ins|Hom|PgU|
|
||||||
* |-----------------------------------------------------------|-----------|
|
* |-----------------------------------------------------------|-----------|
|
||||||
* |Tab | Q| W| E| R| T| Y| U| I| O| P| [| ]| \|Del|End|PgD|
|
* |Tab |Q |W |E |R |T |Y |U |I |O |P |[ |] |\ |Del|End|PgD|
|
||||||
* |-----------------------------------------------------------|-----------|
|
* |-----------------------------------------------------------|-----------|
|
||||||
* |FnCaps| A| S| D| F| G| H| J| K| L| ;| '|Return | |
|
* |Caps |A |S |D |F |G |H |J |K |L |; |' |Return | |
|
||||||
* |-----------------------------------------------------------|-----------|
|
* |-----------------------------------------------------------|-----------|
|
||||||
* |Shift | Z| X| C| V| B| N| M| ,| .| /|Shift | | Up| |
|
* |Shift |Z |X |C |V |B |N |M |, |. |/ |Shift |Fn | | Up| |
|
||||||
* |-----------------------------------------------------------|-----------|
|
* |-----------------------------------------------------------|-----------|
|
||||||
* |Ctrl |||||Win | Space |RAlt |||||Ctrl |Lft|Dwn|Rgt|
|
* |Ctrl |Win|Alt | Space |RAlt |Fn |Ctrl |Lft|Dwn|Rgt|
|
||||||
* *-----------------------------------------------------------------------*
|
* *-----------------------------------------------------------------------*
|
||||||
*/
|
*/
|
||||||
[_BL] = LAYOUT_tkl( \
|
[_BL] = LAYOUT_tkl( \
|
||||||
KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_PSCR, KC_SLCK, KC_PAUS, \
|
KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_PSCR, KC_SLCK, KC_PAUS, \
|
||||||
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_INS, KC_HOME, KC_PGUP, \
|
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_INS, KC_HOME, 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_DEL, KC_END, KC_PGDN, \
|
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_DEL, KC_END, KC_PGDN, \
|
||||||
FN_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, XXXXXXX, KC_ENT, \
|
KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, XXXXXXX, KC_ENT, \
|
||||||
KC_LSFT, XXXXXXX, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, MO(_FL), KC_UP, \
|
KC_LSFT, XXXXXXX, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, MO(_FL), KC_UP, \
|
||||||
KC_LCTL, KC_LALT, KC_LGUI, KC_SPC, KC_RGUI, KC_RALT, MO(_FL), KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT \
|
KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RGUI, KC_RALT, MO(_FL), KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT \
|
||||||
),
|
),
|
||||||
|
/*#### _WL: Workman Layer.
|
||||||
/* _WL: Workman Layer.
|
* .-----------------------------------------------------------------------.
|
||||||
* .-----------------------------------------------------------------------.
|
* | ||||| | | | ||| | | | ||| | | | | | | |
|
||||||
* | ||||| | | | ||| | | | ||| | | | | | | |
|
* .-----------------------------------------------------------|-----------|
|
||||||
* .-----------------------------------------------------------|-----------|
|
* | | | | | | | | | | | |- |= | | | | |
|
||||||
* | | | | | | | | | | | | -| =| | | | |
|
* |-----------------------------------------------------------|-----------|
|
||||||
* |-----------------------------------------------------------|-----------|
|
* | |Q |D |R |W |B |J |F |U |P |; |[ |] |\ | | | |
|
||||||
* | | Q| D| R| W| B| J| F| U| P| ;| [| ]| \| | | |
|
* |-----------------------------------------------------------|-----------|
|
||||||
* |-----------------------------------------------------------|-----------|
|
* | |A |S |H |T |G |Y |N |E |O |I |' | | |
|
||||||
* | | A| S| H| T| G| Y| N| E| O| I| '| | |
|
* |-----------------------------------------------------------|-----------|
|
||||||
* |-----------------------------------------------------------|-----------|
|
* | |Z |X |M |C |V |K |L |, |. |/ | | | | | |
|
||||||
* | | Z| X| M| C| V| K| L| ,| .| /| | | | | |
|
* |-----------------------------------------------------------|-----------|
|
||||||
* |-----------------------------------------------------------|-----------|
|
* | | | | | | | | | | |
|
||||||
* | ||||| | | ||||| | | | |
|
* *-----------------------------------------------------------------------*
|
||||||
* *-----------------------------------------------------------------------*
|
|
||||||
*/
|
*/
|
||||||
[_WL] = LAYOUT_tkl( \
|
[_WL] = LAYOUT_tkl( \
|
||||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, \
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, \
|
||||||
@@ -75,21 +75,20 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|||||||
_______, _______, KC_Z , KC_X , KC_M , KC_C , KC_V , KC_K , KC_L , KC_COMM, KC_DOT , KC_SLSH, _______, _______, _______, \
|
_______, _______, KC_Z , KC_X , KC_M , KC_C , KC_V , KC_K , KC_L , KC_COMM, KC_DOT , KC_SLSH, _______, _______, _______, \
|
||||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ \
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ \
|
||||||
),
|
),
|
||||||
|
/*#### _NL: Norman Layer.
|
||||||
/* _NL: Norman Layer.
|
* .-----------------------------------------------------------------------.
|
||||||
* .-----------------------------------------------------------------------.
|
* | ||||| | | | ||| | | | ||| | | | | | | |
|
||||||
* | ||||| | | | ||| | | | ||| | | | | | | |
|
* .-----------------------------------------------------------|-----------|
|
||||||
* .-----------------------------------------------------------|-----------|
|
* | | | | | | | | | | | |- |= | | | | |
|
||||||
* | | | | | | | | | | | | -| =| | | | |
|
* |-----------------------------------------------------------|-----------|
|
||||||
* |-----------------------------------------------------------|-----------|
|
* | |Q |W |D |F |K |J |U |R |L |; |[ |] |\ | | | |
|
||||||
* | | Q| W| D| F| K| J| U| R| L| ;| [| ]| \| | | |
|
* |-----------------------------------------------------------|-----------|
|
||||||
* |-----------------------------------------------------------|-----------|
|
* | |A |S |E |T |G |Y |N |I |O |H |' | | |
|
||||||
* | | A| S| E| T| G| Y| N| I| O| H| '| | |
|
* |-----------------------------------------------------------|-----------|
|
||||||
* |-----------------------------------------------------------|-----------|
|
* | |Z |X |C |V |B |P |M |, |. |/ | | | | | |
|
||||||
* | | Z| X| C| V| B| P| M| ,| .| /| | | | | |
|
* |-----------------------------------------------------------|-----------|
|
||||||
* |-----------------------------------------------------------|-----------|
|
* | | | | | | | | | | |
|
||||||
* | ||||| | | ||||| | | | |
|
* *-----------------------------------------------------------------------*
|
||||||
* *-----------------------------------------------------------------------*
|
|
||||||
*/
|
*/
|
||||||
[_NL] = LAYOUT_tkl( \
|
[_NL] = LAYOUT_tkl( \
|
||||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, \
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, \
|
||||||
@@ -99,21 +98,20 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|||||||
_______, _______, KC_Z , KC_X , KC_C , KC_V , KC_B , KC_P , KC_M , KC_COMM, KC_DOT , KC_SLSH, _______, _______, _______, \
|
_______, _______, KC_Z , KC_X , KC_C , KC_V , KC_B , KC_P , KC_M , KC_COMM, KC_DOT , KC_SLSH, _______, _______, _______, \
|
||||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ \
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ \
|
||||||
),
|
),
|
||||||
|
/*#### _DL: Dvorak Layer.
|
||||||
/* _DL: Dvorak Layer.
|
* .-----------------------------------------------------------------------.
|
||||||
* .-----------------------------------------------------------------------.
|
* | ||||| | | | ||| | | | ||| | | | | | | |
|
||||||
* | ||||| | | | ||| | | | ||| | | | | | | |
|
* .-----------------------------------------------------------|-----------|
|
||||||
* .-----------------------------------------------------------|-----------|
|
* | | | | | | | | | | | |[ |] | | | | |
|
||||||
* | | | | | | | | | | | | [| ]| | | | |
|
* |-----------------------------------------------------------|-----------|
|
||||||
* |-----------------------------------------------------------|-----------|
|
* | |' |, |. |P |Y |F |G |C |R |L |/ |= |\ | | | |
|
||||||
* | | '| ,| .| P| Y| F| G| C| R| L| /| =| \| | | |
|
* |-----------------------------------------------------------|-----------|
|
||||||
* |-----------------------------------------------------------|-----------|
|
* | |A |O |E |U |I |D |H |T |N |S |- | | |
|
||||||
* | | A| O| E| U| I| D| H| T| N| S| -| | |
|
* |-----------------------------------------------------------|-----------|
|
||||||
* |-----------------------------------------------------------|-----------|
|
* | |; |Q |J |K |X |B |M |W |V |Z | | | | | |
|
||||||
* | | ;| Q| J| K| X| B| M| W| V| Z| | | | | |
|
* |-----------------------------------------------------------|-----------|
|
||||||
* |-----------------------------------------------------------|-----------|
|
* | | | | | | | | | | |
|
||||||
* | ||||| | | ||||| | | | |
|
* *-----------------------------------------------------------------------*
|
||||||
* *-----------------------------------------------------------------------*
|
|
||||||
*/
|
*/
|
||||||
[_DL] = LAYOUT_tkl( \
|
[_DL] = LAYOUT_tkl( \
|
||||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, \
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, \
|
||||||
@@ -123,21 +121,20 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|||||||
_______, _______, KC_SCLN, KC_Q , KC_J , KC_K , KC_X , KC_B , KC_M , KC_W , KC_V , KC_Z , _______, _______, _______, \
|
_______, _______, KC_SCLN, KC_Q , KC_J , KC_K , KC_X , KC_B , KC_M , KC_W , KC_V , KC_Z , _______, _______, _______, \
|
||||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ \
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ \
|
||||||
),
|
),
|
||||||
|
/*#### _CL: Colmak Layer.
|
||||||
/* _CL: Colmak Layer.
|
* .-----------------------------------------------------------------------.
|
||||||
* .-----------------------------------------------------------------------.
|
* | ||||| | | | ||| | | | ||| | | | | | | |
|
||||||
* | ||||| | | | ||| | | | ||| | | | | | | |
|
* .-----------------------------------------------------------|-----------|
|
||||||
* .-----------------------------------------------------------|-----------|
|
* | | | | | | | | | | | |- |= | | | | |
|
||||||
* | | | | | | | | | | | | -| =| | | | |
|
* |-----------------------------------------------------------|-----------|
|
||||||
* |-----------------------------------------------------------|-----------|
|
* | |Q |W |F |P |G |J |L |U |Y |; |[ |] |\ | | | |
|
||||||
* | | Q| W| F| P| G| J| L| U| Y| ;| [| ]| \| | | |
|
* |-----------------------------------------------------------|-----------|
|
||||||
* |-----------------------------------------------------------|-----------|
|
* | |A |R |S |T |D |H |N |E |I |O |' | | |
|
||||||
* | | A| R| S| T| D| H| N| E| I| O| '| | |
|
* |-----------------------------------------------------------|-----------|
|
||||||
* |-----------------------------------------------------------|-----------|
|
* | |Z |X |C |V |B |K |M |, |. |/ | | | | | |
|
||||||
* | | Z| X| C| V| B| K| M| ,| .| /| | | | | |
|
* |-----------------------------------------------------------|-----------|
|
||||||
* |-----------------------------------------------------------|-----------|
|
* | | | | | | | | | | |
|
||||||
* | ||||| | | ||||| | | | |
|
* *-----------------------------------------------------------------------*
|
||||||
* *-----------------------------------------------------------------------*
|
|
||||||
*/
|
*/
|
||||||
[_CL] = LAYOUT_tkl( \
|
[_CL] = LAYOUT_tkl( \
|
||||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, \
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, \
|
||||||
@@ -147,142 +144,126 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|||||||
_______, _______, KC_Z , KC_X , KC_C , KC_V , KC_B , KC_K , KC_M , KC_COMM, KC_DOT , KC_SLSH, _______, _______, _______, \
|
_______, _______, KC_Z , KC_X , KC_C , KC_V , KC_B , KC_K , KC_M , KC_COMM, KC_DOT , KC_SLSH, _______, _______, _______, \
|
||||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ \
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ \
|
||||||
),
|
),
|
||||||
|
/*#### _FL: Function Layer.
|
||||||
/* _FL: Function Layer.
|
* .-----------------------------------------------------------------------.
|
||||||
* M0 opens Chrome
|
* | ||||| | | | ||| | | | ||| |VlM|VlD|VlU| | | |
|
||||||
* .-----------------------------------------------------------------------.
|
* .-----------------------------------------------------------|-----------|
|
||||||
* | ||||| | | | ||| | | | ||| |VlM|VlD|VlU| | | |
|
* |Web| | | | | | | | | | | | | | | | |
|
||||||
* .-----------------------------------------------------------|-----------|
|
* |-----------------------------------------------------------|-----------|
|
||||||
* | M0| | | | | | | | | | | | | | | | |
|
* |Fn_AL| | | | | | | | | | | | | | | | |
|
||||||
* |-----------------------------------------------------------|-----------|
|
* |-----------------------------------------------------------|-----------|
|
||||||
* |Fn_AL| | | | | | | | | | | | | | | | |
|
* | | | | | | | |Lft|Dwn|Up |Rgt| | | |
|
||||||
* |-----------------------------------------------------------|-----------|
|
* |-----------------------------------------------------------|-----------|
|
||||||
* |FnCaps| | | | | | |Lft|Dwn|Up |Rgt| | | |
|
* | | | | | | | | | | | | |Fn | | | |
|
||||||
* |-----------------------------------------------------------|-----------|
|
* |-----------------------------------------------------------|-----------|
|
||||||
* | | | | | | | | | | | | | | | | |
|
* | | | | SP4 | |Fn | |WBk| |WFw|
|
||||||
* |-----------------------------------------------------------|-----------|
|
* *-----------------------------------------------------------------------*
|
||||||
* | ||||| | | ||||| |WBk| |WFw|
|
|
||||||
* *-----------------------------------------------------------------------*
|
|
||||||
*/
|
*/
|
||||||
[_FL] = LAYOUT_tkl( \
|
[_FL] = LAYOUT_tkl( \
|
||||||
XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_MUTE, KC_VOLD, KC_VOLU, XXXXXXX, XXXXXXX, XXXXXXX, \
|
XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_MUTE, KC_VOLD, KC_VOLU, XXXXXXX, XXXXXXX, XXXXXXX, \
|
||||||
M(0), XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, \
|
KC_WEB, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, \
|
||||||
MO(_AL), XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, \
|
MO(_AL), XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, \
|
||||||
_______, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, \
|
XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, \
|
||||||
XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, _______, XXXXXXX, \
|
XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, _______, XXXXXXX, \
|
||||||
XXXXXXX, XXXXXXX, KC_MENU, M(1), XXXXXXX, _______, XXXXXXX, XXXXXXX, KC_WBAK, XXXXXXX, KC_WFWD \
|
XXXXXXX, XXXXXXX, KC_MENU, KC_SP4, XXXXXXX, _______, XXXXXXX, XXXXXXX, KC_WBAK, XXXXXXX, KC_WFWD \
|
||||||
),
|
),
|
||||||
|
/*#### _AL: Adjust Layer - Keymap select, LED backlight, and Dynamic Macro settings.
|
||||||
/* _AL: Adjust Layer.
|
* .-----------------------------------------------------------------------.
|
||||||
* Default keymap, RGB Underglow, LED backlight, and Dynamic Macro settings.
|
* |Rst||||| | | | ||| | | | ||| | | | | | | |
|
||||||
* .-----------------------------------------------------------------------.
|
* .-----------------------------------------------------------|-----------|
|
||||||
* |Rst||||| | | | ||| | | | ||| | | | | | | |
|
* |Rev|Tog|Mod|H- |H+ |S- |S+ |V- |V+ | |BLT|BL-|BL+| | |MR1|MP1|
|
||||||
* .-----------------------------------------------------------|-----------|
|
* |-----------------------------------------------------------|-----------|
|
||||||
* |Ver|Tog|Mod|H- |H+ |S- |S+ |V- |V+ | |BLT|BL-|BL+| | |MR1|MP1|
|
* |Fn_AL|_BL|_WL| | | | | | | | | | | | MS|MR2|MP2|
|
||||||
* |-----------------------------------------------------------|-----------|
|
* |-----------------------------------------------------------|-----------|
|
||||||
* |Fn_AL|_BL|_WL| | | | | | | | | | | | MS|MR2|MP2|
|
* | | | |_DL| | | | | | | | | | |
|
||||||
* |-----------------------------------------------------------|-----------|
|
* |-----------------------------------------------------------|-----------|
|
||||||
* |FnCaps| | |_DL| | | | | | | | | | |
|
* | | | |_CL| |_BL|_NL| | | | | |Fn | | | |
|
||||||
* |-----------------------------------------------------------|-----------|
|
* |-----------------------------------------------------------|-----------|
|
||||||
* | | | |_CL| |_BL|_NL| | | | | | | | | |
|
* | | | | | |Fn | | | | |
|
||||||
* |-----------------------------------------------------------|-----------|
|
* *-----------------------------------------------------------------------*
|
||||||
* | ||||| | | ||||| | | | |
|
|
||||||
* *-----------------------------------------------------------------------*
|
|
||||||
*/
|
*/
|
||||||
[_AL] = LAYOUT_tkl( \
|
[_AL] = LAYOUT_tkl( \
|
||||||
RESET, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, \
|
RESET, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, \
|
||||||
F(0), RGB_TOG, RGB_MOD, RGB_HUD, RGB_HUI, RGB_SAD, RGB_SAI, RGB_VAD, RGB_VAI, XXXXXXX, BL_TOGG, BL_DEC, BL_INC, XXXXXXX, XXXXXXX, KC_DMR1, KC_DMP1, \
|
QMK_REV, RGB_TOG, RGB_MOD, RGB_HUD, RGB_HUI, RGB_SAD, RGB_SAI, RGB_VAD, RGB_VAI, XXXXXXX, BL_TOGG, BL_DEC, BL_INC, XXXXXXX, XXXXXXX, KC_DMR1, KC_DMP1, \
|
||||||
_______, DF(_BL), DF(_WL), XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_DMRS, KC_DMR2, KC_DMP2, \
|
_______, DF(_BL), DF(_WL), XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_DMRS, KC_DMR2, KC_DMP2, \
|
||||||
_______, XXXXXXX, XXXXXXX, DF(_DL), XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, \
|
XXXXXXX, XXXXXXX, XXXXXXX, DF(_DL), XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, \
|
||||||
XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, DF(_CL), XXXXXXX, DF(_BL), DF(_NL), XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, _______, XXXXXXX, \
|
XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, DF(_CL), XXXXXXX, DF(_BL), DF(_NL), XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, _______, XXXXXXX, \
|
||||||
_______, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, _______, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX \
|
XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, _______, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX \
|
||||||
),
|
),
|
||||||
};
|
};
|
||||||
|
|
||||||
const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) {
|
|
||||||
switch(id) {
|
|
||||||
case 0:
|
|
||||||
if (record->event.pressed) {
|
|
||||||
return MACRO(I(0), D(LGUI), T(R), U(LGUI), END);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
SEND_STRING("chrome.exe\n");
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case 1:
|
|
||||||
if (record->event.pressed) {
|
|
||||||
return MACRO(I(0), T(SPC), T(SPC), T(SPC), T(SPC), END);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
return MACRO_NONE;
|
|
||||||
};
|
|
||||||
|
|
||||||
const uint16_t PROGMEM fn_actions[] = {
|
|
||||||
[0] = ACTION_FUNCTION(0),
|
|
||||||
};
|
|
||||||
|
|
||||||
void action_function(keyrecord_t *record, uint8_t id, uint8_t opt) {
|
|
||||||
switch (id) {
|
|
||||||
case 0:
|
|
||||||
if (record->event.pressed) {
|
|
||||||
SEND_STRING ("[QMK:" QMK_KEYBOARD ":" QMK_KEYMAP ":" QMK_VERSION "]");
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void matrix_init_user(void) {
|
|
||||||
#ifdef BACKLIGHT_ENABLE
|
|
||||||
backlight_level(0);
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
// Runs constantly in the background, in a loop.
|
|
||||||
void matrix_scan_user(void) {
|
|
||||||
uint8_t layer = biton32(layer_state);
|
|
||||||
|
|
||||||
if (current_layer == layer) {
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
current_layer = layer;
|
|
||||||
switch (layer) {
|
|
||||||
case 0:
|
|
||||||
backlight_level(0);
|
|
||||||
break;
|
|
||||||
case 1:
|
|
||||||
backlight_level(1);
|
|
||||||
break;
|
|
||||||
case 2:
|
|
||||||
backlight_level(1);
|
|
||||||
break;
|
|
||||||
case 3:
|
|
||||||
backlight_level(1);
|
|
||||||
break;
|
|
||||||
case 4:
|
|
||||||
backlight_level(1);
|
|
||||||
break;
|
|
||||||
case 5:
|
|
||||||
backlight_level(2);
|
|
||||||
break;
|
|
||||||
case 6:
|
|
||||||
backlight_level(3);
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
backlight_level(0);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
||||||
// Enable Dynamic Macros.
|
switch (keycode) {
|
||||||
|
case QMK_REV:
|
||||||
|
if (record->event.pressed) {
|
||||||
|
SEND_STRING(QMK_KEYBOARD "/" QMK_KEYMAP "@" QMK_VERSION ":" QMK_BUILDDATE);
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
break;
|
||||||
|
case KC_WEB:
|
||||||
|
if (record->event.pressed) {
|
||||||
|
SEND_STRING(SS_LGUI("r"));
|
||||||
|
wait_ms(100);
|
||||||
|
SEND_STRING("chrome.exe\n");
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
break;
|
||||||
|
case KC_SP4:
|
||||||
|
if (record->event.pressed) {
|
||||||
|
SEND_STRING (" ");
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
// Dynamic Macros.
|
||||||
if (!process_record_dynamic_macro(keycode, record)) {
|
if (!process_record_dynamic_macro(keycode, record)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void custom_backlight_level(uint8_t level) {
|
||||||
|
if (level > BACKLIGHT_LEVELS)
|
||||||
|
level = BACKLIGHT_LEVELS;
|
||||||
|
backlight_config.level = level;
|
||||||
|
backlight_config.enable = !!backlight_config.level;
|
||||||
|
backlight_set(backlight_config.level);
|
||||||
|
}
|
||||||
|
|
||||||
|
void matrix_init_user(void) {
|
||||||
|
#ifdef BACKLIGHT_ENABLE
|
||||||
|
custom_backlight_level(0);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
void matrix_scan_user(void) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
uint32_t layer_state_set_user(uint32_t state) {
|
||||||
|
switch (biton32(state)) {
|
||||||
|
case _BL:
|
||||||
|
custom_backlight_level(0);
|
||||||
|
break;
|
||||||
|
case _WL:
|
||||||
|
case _NL:
|
||||||
|
case _DL:
|
||||||
|
case _CL:
|
||||||
|
custom_backlight_level(1);
|
||||||
|
break;
|
||||||
|
case _FL:
|
||||||
|
custom_backlight_level(2);
|
||||||
|
break;
|
||||||
|
case _AL:
|
||||||
|
custom_backlight_level(3);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
custom_backlight_level(0);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
return state;
|
||||||
|
}
|
||||||
|
|
||||||
|
void led_set_user(uint8_t usb_led) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|||||||
@@ -1,120 +1,114 @@
|
|||||||
# Keymap Maintainer: Gam3cat
|
# Keymap Maintainer: Gam3cat
|
||||||
make gonnerd:gam3cat
|
make gonnerd:gam3cat
|
||||||
## Layout Config:
|
## Layout Config:
|
||||||
2u backspace, 2.25u left shift/enter, 1.75u right shift.
|
2u backspace, 2.25u lshift/enter, [2.75u rshift] or [1.75u rshift, 1u Fn].
|
||||||
2x1.5u, 1x7.0u, 2x1.5u, 3x1u bottom row.
|
[1.5u, 1u, 1.5u 1x7.0u, 1.5u, 1u, 1.5u, 3x1u] or [2x1.5u, 1x7.0u, 2x1.5u, 3x1u] bottom row.
|
||||||
|
|
||||||
FN_CAPS = MO(_FL) when held, CAPS when tapped.
|
|
||||||
GRAVE_ESC + GUI = `
|
|
||||||
GRAVE_ESC + SHIFT = ~
|
|
||||||
|
|
||||||
## Base Layer Selection:
|
## Base Layer Selection:
|
||||||
(Caps+TAB+( )): (Q)WERTY, (W)orkman, (N)orman, (D)vorak, (C)olmak
|
(Fn+TAB+( )): (Q)WERTY, (W)orkman, (N)orman, (D)vorak, (C)olmak
|
||||||
|
|
||||||
### Base Layer Options:
|
### Base Layer Options:
|
||||||
_BL: Base Layer, mostly standard TKL QWERTY layout.
|
#### _BL: Base Layer - Standard TKL QWERTY layout.
|
||||||
.-----------------------------------------------------------------------.
|
.-----------------------------------------------------------------------.
|
||||||
|Esc||||| F1| F2| F3| F4||| F5| F6| F7| F8||| F9|F10|F11|F12|PSc|SLk|Pau|
|
|Esc|||||F1 |F2 |F3 |F4 |||F5 |F6 |F7 |F8 |||F9 |F10|F11|F12|PSc|SLk|Pau|
|
||||||
|-----------------------------------------------------------|-----------|
|
|-----------------------------------------------------------|-----------|
|
||||||
| ~| 1| 2| 3| 4| 5| 6| 7| 8| 9| 0| -| =|Backsp |Ins|Hom|PgU|
|
|~ |1 |2 |3 |4 |5 |6 |7 |8 |9 |0 |- |= |Backsp |Ins|Hom|PgU|
|
||||||
|-----------------------------------------------------------|-----------|
|
|-----------------------------------------------------------|-----------|
|
||||||
|Tab | Q| W| E| R| T| Y| U| I| O| P| [| ]| \|Del|End|PgD|
|
|Tab |Q |W |E |R |T |Y |U |I |O |P |[ |] |\ |Del|End|PgD|
|
||||||
|-----------------------------------------------------------|-----------|
|
|-----------------------------------------------------------|-----------|
|
||||||
|FnCaps| A| S| D| F| G| H| J| K| L| ;| '|Return | |
|
|Caps |A |S |D |F |G |H |J |K |L |; |' |Return | |
|
||||||
|-----------------------------------------------------------|-----------|
|
|-----------------------------------------------------------|-----------|
|
||||||
|Shift | Z| X| C| V| B| N| M| ,| .| /|Shift | | Up| |
|
|Shift |Z |X |C |V |B |N |M |, |. |/ |Shift |Fn | | Up| |
|
||||||
|-----------------------------------------------------------|-----------|
|
|-----------------------------------------------------------|-----------|
|
||||||
|Ctrl |||||Win | Space |RAlt |||||Ctrl |Lft|Dwn|Rgt|
|
|Ctrl |Win|Alt | Space |RAlt |Fn |Ctrl |Lft|Dwn|Rgt|
|
||||||
*-----------------------------------------------------------------------*
|
*-----------------------------------------------------------------------*
|
||||||
|
|
||||||
_WL: Workman Layer.
|
#### _WL: Workman Layer.
|
||||||
.-----------------------------------------------------------------------.
|
.-----------------------------------------------------------------------.
|
||||||
| ||||| | | | ||| | | | ||| | | | | | | |
|
| ||||| | | | ||| | | | ||| | | | | | | |
|
||||||
.-----------------------------------------------------------|-----------|
|
.-----------------------------------------------------------|-----------|
|
||||||
| | | | | | | | | | | | -| =| | | | |
|
| | | | | | | | | | | |- |= | | | | |
|
||||||
|-----------------------------------------------------------|-----------|
|
|-----------------------------------------------------------|-----------|
|
||||||
| | Q| D| R| W| B| J| F| U| P| ;| [| ]| \| | | |
|
| |Q |D |R |W |B |J |F |U |P |; |[ |] |\ | | | |
|
||||||
|-----------------------------------------------------------|-----------|
|
|-----------------------------------------------------------|-----------|
|
||||||
| | A| S| H| T| G| Y| N| E| O| I| '| | |
|
| |A |S |H |T |G |Y |N |E |O |I |' | | |
|
||||||
|-----------------------------------------------------------|-----------|
|
|-----------------------------------------------------------|-----------|
|
||||||
| | Z| X| M| C| V| K| L| ,| .| /| | | | | |
|
| |Z |X |M |C |V |K |L |, |. |/ | | | | | |
|
||||||
|-----------------------------------------------------------|-----------|
|
|-----------------------------------------------------------|-----------|
|
||||||
| ||||| | | ||||| | | | |
|
| | | | | | | | | | |
|
||||||
*-----------------------------------------------------------------------*
|
*-----------------------------------------------------------------------*
|
||||||
|
|
||||||
_NL: Norman Layer.
|
#### _NL: Norman Layer.
|
||||||
.-----------------------------------------------------------------------.
|
.-----------------------------------------------------------------------.
|
||||||
| ||||| | | | ||| | | | ||| | | | | | | |
|
| ||||| | | | ||| | | | ||| | | | | | | |
|
||||||
.-----------------------------------------------------------|-----------|
|
.-----------------------------------------------------------|-----------|
|
||||||
| | | | | | | | | | | | -| =| | | | |
|
| | | | | | | | | | | |- |= | | | | |
|
||||||
|-----------------------------------------------------------|-----------|
|
|-----------------------------------------------------------|-----------|
|
||||||
| | Q| W| D| F| K| J| U| R| L| ;| [| ]| \| | | |
|
| |Q |W |D |F |K |J |U |R |L |; |[ |] |\ | | | |
|
||||||
|-----------------------------------------------------------|-----------|
|
|-----------------------------------------------------------|-----------|
|
||||||
| | A| S| E| T| G| Y| N| I| O| H| '| | |
|
| |A |S |E |T |G |Y |N |I |O |H |' | | |
|
||||||
|-----------------------------------------------------------|-----------|
|
|-----------------------------------------------------------|-----------|
|
||||||
| | Z| X| C| V| B| P| M| ,| .| /| | | | | |
|
| |Z |X |C |V |B |P |M |, |. |/ | | | | | |
|
||||||
|-----------------------------------------------------------|-----------|
|
|-----------------------------------------------------------|-----------|
|
||||||
| ||||| | | ||||| | | | |
|
| | | | | | | | | | |
|
||||||
*-----------------------------------------------------------------------*
|
*-----------------------------------------------------------------------*
|
||||||
|
|
||||||
_DL: Dvorak Layer.
|
#### _DL: Dvorak Layer.
|
||||||
.-----------------------------------------------------------------------.
|
.-----------------------------------------------------------------------.
|
||||||
| ||||| | | | ||| | | | ||| | | | | | | |
|
| ||||| | | | ||| | | | ||| | | | | | | |
|
||||||
.-----------------------------------------------------------|-----------|
|
.-----------------------------------------------------------|-----------|
|
||||||
| | | | | | | | | | | | [| ]| | | | |
|
| | | | | | | | | | | |[ |] | | | | |
|
||||||
|-----------------------------------------------------------|-----------|
|
|-----------------------------------------------------------|-----------|
|
||||||
| | '| ,| .| P| Y| F| G| C| R| L| /| =| \| | | |
|
| |' |, |. |P |Y |F |G |C |R |L |/ |= |\ | | | |
|
||||||
|-----------------------------------------------------------|-----------|
|
|-----------------------------------------------------------|-----------|
|
||||||
| | A| O| E| U| I| D| H| T| N| S| -| | |
|
| |A |O |E |U |I |D |H |T |N |S |- | | |
|
||||||
|-----------------------------------------------------------|-----------|
|
|-----------------------------------------------------------|-----------|
|
||||||
| | ;| Q| J| K| X| B| M| W| V| Z| | | | | |
|
| |; |Q |J |K |X |B |M |W |V |Z | | | | | |
|
||||||
|-----------------------------------------------------------|-----------|
|
|-----------------------------------------------------------|-----------|
|
||||||
| ||||| | | ||||| | | | |
|
| | | | | | | | | | |
|
||||||
*-----------------------------------------------------------------------*
|
*-----------------------------------------------------------------------*
|
||||||
|
|
||||||
_CL: Colmak Layer.
|
#### _CL: Colmak Layer.
|
||||||
.-----------------------------------------------------------------------.
|
.-----------------------------------------------------------------------.
|
||||||
| ||||| | | | ||| | | | ||| | | | | | | |
|
| ||||| | | | ||| | | | ||| | | | | | | |
|
||||||
.-----------------------------------------------------------|-----------|
|
.-----------------------------------------------------------|-----------|
|
||||||
| | | | | | | | | | | | -| =| | | | |
|
| | | | | | | | | | | |- |= | | | | |
|
||||||
|-----------------------------------------------------------|-----------|
|
|-----------------------------------------------------------|-----------|
|
||||||
| | Q| W| F| P| G| J| L| U| Y| ;| [| ]| \| | | |
|
| |Q |W |F |P |G |J |L |U |Y |; |[ |] |\ | | | |
|
||||||
|-----------------------------------------------------------|-----------|
|
|-----------------------------------------------------------|-----------|
|
||||||
| | A| R| S| T| D| H| N| E| I| O| '| | |
|
| |A |R |S |T |D |H |N |E |I |O |' | | |
|
||||||
|-----------------------------------------------------------|-----------|
|
|-----------------------------------------------------------|-----------|
|
||||||
| | Z| X| C| V| B| K| M| ,| .| /| | | | | |
|
| |Z |X |C |V |B |K |M |, |. |/ | | | | | |
|
||||||
|-----------------------------------------------------------|-----------|
|
|-----------------------------------------------------------|-----------|
|
||||||
| ||||| | | ||||| | | | |
|
| | | | | | | | | | |
|
||||||
*-----------------------------------------------------------------------*
|
*-----------------------------------------------------------------------*
|
||||||
|
|
||||||
_FL: Function Layer.
|
#### _FL: Function Layer.
|
||||||
M0 opens Chrome
|
|
||||||
.-----------------------------------------------------------------------.
|
.-----------------------------------------------------------------------.
|
||||||
| ||||| | | | ||| | | | ||| |VlM|VlD|VlU| | | |
|
| ||||| | | | ||| | | | ||| |VlM|VlD|VlU| | | |
|
||||||
.-----------------------------------------------------------|-----------|
|
.-----------------------------------------------------------|-----------|
|
||||||
| M0| | | | | | | | | | | | | | | | |
|
|Web| | | | | | | | | | | | | | | | |
|
||||||
|-----------------------------------------------------------|-----------|
|
|-----------------------------------------------------------|-----------|
|
||||||
| | | | | | | | | | | | | | | | | |
|
|Fn_AL| | | | | | | | | | | | | | | | |
|
||||||
|-----------------------------------------------------------|-----------|
|
|-----------------------------------------------------------|-----------|
|
||||||
| | | | | | | |Lft|Dwn|Up |Rgt| | | |
|
| | | | | | | |Lft|Dwn|Up |Rgt| | | |
|
||||||
|-----------------------------------------------------------|-----------|
|
|-----------------------------------------------------------|-----------|
|
||||||
| | | | | | | | | | | | | | | | |
|
| | | | | | | | | | | | |Fn | | | |
|
||||||
|-----------------------------------------------------------|-----------|
|
|-----------------------------------------------------------|-----------|
|
||||||
| ||||| | | ||||| |WBk| |WFw|
|
| | | | SP4 | |Fn | |WBk| |WFw|
|
||||||
*-----------------------------------------------------------------------*
|
*-----------------------------------------------------------------------*
|
||||||
|
|
||||||
_AL: Adjust Layer.
|
#### _AL: Adjust Layer - Keymap select, LED backlight, and Dynamic Macro settings.
|
||||||
Default keymap, RGB Underglow, LED backlight, and Dynamic Macro settings.
|
|
||||||
.-----------------------------------------------------------------------.
|
.-----------------------------------------------------------------------.
|
||||||
|Rst||||| | | | ||| | | | ||| | | | | | | |
|
|Rst||||| | | | ||| | | | ||| | | | | | | |
|
||||||
.-----------------------------------------------------------|-----------|
|
.-----------------------------------------------------------|-----------|
|
||||||
|Ver|Tog|Mod|H- |H+ |S- |S+ |V- |V+ | |BLT|BL-|BL+| | |MR1|MP1|
|
|Rev|Tog|Mod|H- |H+ |S- |S+ |V- |V+ | |BLT|BL-|BL+| | |MR1|MP1|
|
||||||
|-----------------------------------------------------------|-----------|
|
|-----------------------------------------------------------|-----------|
|
||||||
|Fn_AL|_BL|_WL| | | | | | | | | | | | MS|MR2|MP2|
|
|Fn_AL|_BL|_WL| | | | | | | | | | | | MS|MR2|MP2|
|
||||||
|-----------------------------------------------------------|-----------|
|
|-----------------------------------------------------------|-----------|
|
||||||
|FnCaps| | |_DL| | | | | | | | | | |
|
| | | |_DL| | | | | | | | | | |
|
||||||
|-----------------------------------------------------------|-----------|
|
|-----------------------------------------------------------|-----------|
|
||||||
| | | |_CL| |_BL|_NL| | | | | | | | | |
|
| | | |_CL| |_BL|_NL| | | | | |Fn | | | |
|
||||||
|-----------------------------------------------------------|-----------|
|
|-----------------------------------------------------------|-----------|
|
||||||
| ||||| | | ||||| | | | |
|
| | | | | |Fn | | | | |
|
||||||
*-----------------------------------------------------------------------*
|
*-----------------------------------------------------------------------*
|
||||||
|
|||||||
@@ -2,20 +2,23 @@
|
|||||||
# change to "no" to disable the options, or define them in the Makefile in
|
# change to "no" to disable the options, or define them in the Makefile in
|
||||||
# the appropriate keymap folder that will get included automatically
|
# the appropriate keymap folder that will get included automatically
|
||||||
#
|
#
|
||||||
BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000)
|
TAP_DANCE_ENABLE = no # Enable TapDance functionality
|
||||||
MOUSEKEY_ENABLE = yes # Mouse keys(+4700)
|
|
||||||
EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
|
|
||||||
CONSOLE_ENABLE = yes # Console for debug(+400)
|
|
||||||
COMMAND_ENABLE = yes # Commands for debug and configuration
|
|
||||||
NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
|
|
||||||
BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality
|
|
||||||
MIDI_ENABLE = no # MIDI controls
|
|
||||||
AUDIO_ENABLE = no # Audio output on port C6
|
|
||||||
UNICODE_ENABLE = no # Unicode
|
|
||||||
BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
|
|
||||||
RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight.
|
RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight.
|
||||||
|
BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000)
|
||||||
|
MOUSEKEY_ENABLE = no # Mouse keys(+1500)
|
||||||
|
EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
|
||||||
|
CONSOLE_ENABLE = no # Console for debug(+400)
|
||||||
|
COMMAND_ENABLE = no # Commands for debug and configuration
|
||||||
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
||||||
|
NKRO_ENABLE = yes # Nkey Rollover - If this doesn't work, add this to config.h: #define FORCE_NKRO
|
||||||
ifndef QUANTUM_DIR
|
BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality
|
||||||
include ../../../../Makefile
|
MIDI_ENABLE = no # MIDI controls
|
||||||
endif
|
UNICODE_ENABLE = no # Unicode
|
||||||
|
UNICODEMAP_ENABLE = no # Enable extended unicode
|
||||||
|
BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
|
||||||
|
AUDIO_ENABLE = no # Audio output on port C6
|
||||||
|
FAUXCLICKY_ENABLE = no # Uses buzzer to emulate clicky switches. By default, uses the C6 pin, same as AUDIO_ENABLE.
|
||||||
|
#VARIABLE_TRACE = no # Use this to debug changes to variable values
|
||||||
|
API_SYSEX_ENABLE = no # This enables using the Quantum SYSEX API to send strings(+5390)
|
||||||
|
KEY_LOCK_ENABLE = no # This enables key lock(+260)
|
||||||
|
SPLIT_KEYBOARD = no # This enables split keyboard support and includes all necessary files located at quantum/split_common
|
||||||
|
|||||||
10
keyboards/h87a/keymaps/gam3cat/config.h
Normal file
10
keyboards/h87a/keymaps/gam3cat/config.h
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
#pragma once
|
||||||
|
|
||||||
|
//Force NKRO to be enabled.
|
||||||
|
#define FORCE_NKRO
|
||||||
|
|
||||||
|
//GRAVE_ESC override for CTRL+SHIFT+ESC Windows task manager shortcut.
|
||||||
|
//#define GRAVE_ESC_CTRL_OVERRIDE
|
||||||
|
|
||||||
|
//Delay matrix scan for tap dance, reduce to activate modifier keys faster.
|
||||||
|
//#define TAPPING_TERM 200
|
||||||
292
keyboards/h87a/keymaps/gam3cat/keymap.c
Normal file
292
keyboards/h87a/keymaps/gam3cat/keymap.c
Normal file
@@ -0,0 +1,292 @@
|
|||||||
|
#include QMK_KEYBOARD_H
|
||||||
|
#include "version.h"
|
||||||
|
|
||||||
|
enum layers {
|
||||||
|
_BL = 0, // Base Layer
|
||||||
|
_WL, // Workman Layer
|
||||||
|
_NL, // Norman Layer
|
||||||
|
_DL, // Dvorak Layer
|
||||||
|
_CL, // Base Layer
|
||||||
|
_FL, // Function Layer
|
||||||
|
_AL, // Adjust Layer
|
||||||
|
};
|
||||||
|
|
||||||
|
enum custom_keycodes {
|
||||||
|
DYNAMIC_MACRO_RANGE = SAFE_RANGE,
|
||||||
|
QMK_REV,
|
||||||
|
KC_WEB,
|
||||||
|
KC_SP4
|
||||||
|
};
|
||||||
|
|
||||||
|
extern backlight_config_t backlight_config;
|
||||||
|
|
||||||
|
#include "dynamic_macro.h"
|
||||||
|
#define FN_CAPS LT(_FL, KC_CAPS)
|
||||||
|
#define KC_DMR1 DYN_REC_START1
|
||||||
|
#define KC_DMR2 DYN_REC_START2
|
||||||
|
#define KC_DMP1 DYN_MACRO_PLAY1
|
||||||
|
#define KC_DMP2 DYN_MACRO_PLAY2
|
||||||
|
#define KC_DMRS DYN_REC_STOP
|
||||||
|
|
||||||
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||||
|
/*#### _BL: Base Layer - Standard TKL QWERTY layout.
|
||||||
|
* .-----------------------------------------------------------------------.
|
||||||
|
* |Esc|||||F1 |F2 |F3 |F4 |||F5 |F6 |F7 |F8 |||F9 |F10|F11|F12|PSc|SLk|Pau|
|
||||||
|
* |-----------------------------------------------------------|-----------|
|
||||||
|
* |~ |1 |2 |3 |4 |5 |6 |7 |8 |9 |0 |- |= |Backsp |Ins|Hom|PgU|
|
||||||
|
* |-----------------------------------------------------------|-----------|
|
||||||
|
* |Tab |Q |W |E |R |T |Y |U |I |O |P |[ |] |\ |Del|End|PgD|
|
||||||
|
* |-----------------------------------------------------------|-----------|
|
||||||
|
* |Caps |A |S |D |F |G |H |J |K |L |; |' |Return | |
|
||||||
|
* |-----------------------------------------------------------|-----------|
|
||||||
|
* |Shift |Z |X |C |V |B |N |M |, |. |/ |Shift |Fn | | Up| |
|
||||||
|
* |-----------------------------------------------------------|-----------|
|
||||||
|
* |Ctrl |Win|Alt | Space |RAlt |Fn |Ctrl |Lft|Dwn|Rgt|
|
||||||
|
* *-----------------------------------------------------------------------*
|
||||||
|
*/
|
||||||
|
[_BL] = LAYOUT_all( \
|
||||||
|
KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_PSCR, KC_SLCK, KC_PAUS, \
|
||||||
|
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_BSPC, KC_INS, KC_HOME, 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_DEL, KC_END, 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, XXXXXXX, KC_ENT, \
|
||||||
|
KC_LSFT, XXXXXXX, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, MO(_FL), KC_UP, \
|
||||||
|
KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RGUI, KC_RALT, MO(_FL), KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT \
|
||||||
|
),
|
||||||
|
/*#### _WL: Workman Layer.
|
||||||
|
* .-----------------------------------------------------------------------.
|
||||||
|
* | ||||| | | | ||| | | | ||| | | | | | | |
|
||||||
|
* .-----------------------------------------------------------|-----------|
|
||||||
|
* | | | | | | | | | | | |- |= | | | | |
|
||||||
|
* |-----------------------------------------------------------|-----------|
|
||||||
|
* | |Q |D |R |W |B |J |F |U |P |; |[ |] |\ | | | |
|
||||||
|
* |-----------------------------------------------------------|-----------|
|
||||||
|
* | |A |S |H |T |G |Y |N |E |O |I |' | | |
|
||||||
|
* |-----------------------------------------------------------|-----------|
|
||||||
|
* | |Z |X |M |C |V |K |L |, |. |/ | | | | | |
|
||||||
|
* |-----------------------------------------------------------|-----------|
|
||||||
|
* | | | | | | | | | | |
|
||||||
|
* *-----------------------------------------------------------------------*
|
||||||
|
*/
|
||||||
|
[_WL] = LAYOUT_all( \
|
||||||
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, \
|
||||||
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, \
|
||||||
|
_______, KC_Q , KC_D , KC_R , KC_W , KC_B , KC_J , KC_F , KC_U , KC_P , KC_SCLN, _______, _______, _______, _______, _______, _______, \
|
||||||
|
_______, KC_A , KC_S , KC_H , KC_T , KC_G , KC_Y , KC_N , KC_E , KC_O , KC_I , _______, _______, _______, \
|
||||||
|
_______, _______, KC_Z , KC_X , KC_M , KC_C , KC_V , KC_K , KC_L , KC_COMM, KC_DOT , KC_SLSH, _______, _______, _______, \
|
||||||
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ \
|
||||||
|
),
|
||||||
|
/*#### _NL: Norman Layer.
|
||||||
|
* .-----------------------------------------------------------------------.
|
||||||
|
* | ||||| | | | ||| | | | ||| | | | | | | |
|
||||||
|
* .-----------------------------------------------------------|-----------|
|
||||||
|
* | | | | | | | | | | | |- |= | | | | |
|
||||||
|
* |-----------------------------------------------------------|-----------|
|
||||||
|
* | |Q |W |D |F |K |J |U |R |L |; |[ |] |\ | | | |
|
||||||
|
* |-----------------------------------------------------------|-----------|
|
||||||
|
* | |A |S |E |T |G |Y |N |I |O |H |' | | |
|
||||||
|
* |-----------------------------------------------------------|-----------|
|
||||||
|
* | |Z |X |C |V |B |P |M |, |. |/ | | | | | |
|
||||||
|
* |-----------------------------------------------------------|-----------|
|
||||||
|
* | | | | | | | | | | |
|
||||||
|
* *-----------------------------------------------------------------------*
|
||||||
|
*/
|
||||||
|
[_NL] = LAYOUT_all( \
|
||||||
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, \
|
||||||
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, \
|
||||||
|
_______, KC_Q , KC_W , KC_D , KC_F , KC_K , KC_J , KC_U , KC_R , KC_L , KC_SCLN, _______, _______, _______, _______, _______, _______, \
|
||||||
|
_______, KC_A , KC_S , KC_E , KC_T , KC_G , KC_Y , KC_N , KC_I , KC_O , KC_H , _______, _______, _______, \
|
||||||
|
_______, _______, KC_Z , KC_X , KC_C , KC_V , KC_B , KC_P , KC_M , KC_COMM, KC_DOT , KC_SLSH, _______, _______, _______, \
|
||||||
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ \
|
||||||
|
),
|
||||||
|
/*#### _DL: Dvorak Layer.
|
||||||
|
* .-----------------------------------------------------------------------.
|
||||||
|
* | ||||| | | | ||| | | | ||| | | | | | | |
|
||||||
|
* .-----------------------------------------------------------|-----------|
|
||||||
|
* | | | | | | | | | | | |[ |] | | | | |
|
||||||
|
* |-----------------------------------------------------------|-----------|
|
||||||
|
* | |' |, |. |P |Y |F |G |C |R |L |/ |= |\ | | | |
|
||||||
|
* |-----------------------------------------------------------|-----------|
|
||||||
|
* | |A |O |E |U |I |D |H |T |N |S |- | | |
|
||||||
|
* |-----------------------------------------------------------|-----------|
|
||||||
|
* | |; |Q |J |K |X |B |M |W |V |Z | | | | | |
|
||||||
|
* |-----------------------------------------------------------|-----------|
|
||||||
|
* | | | | | | | | | | |
|
||||||
|
* *-----------------------------------------------------------------------*
|
||||||
|
*/
|
||||||
|
[_DL] = LAYOUT_all( \
|
||||||
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, \
|
||||||
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_LBRC, KC_RBRC, _______, _______, _______, _______, _______, \
|
||||||
|
_______, KC_QUOT, KC_COMM, KC_DOT , KC_P , KC_Y , KC_F , KC_G , KC_C , KC_R , KC_L , KC_SLSH, KC_EQL , _______, _______, _______, _______, \
|
||||||
|
_______, KC_A , KC_O , KC_E , KC_U , KC_I , KC_D , KC_H , KC_T , KC_N , KC_S , KC_MINS, _______, _______, \
|
||||||
|
_______, _______, KC_SCLN, KC_Q , KC_J , KC_K , KC_X , KC_B , KC_M , KC_W , KC_V , KC_Z , _______, _______, _______, \
|
||||||
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ \
|
||||||
|
),
|
||||||
|
/*#### _CL: Colmak Layer.
|
||||||
|
* .-----------------------------------------------------------------------.
|
||||||
|
* | ||||| | | | ||| | | | ||| | | | | | | |
|
||||||
|
* .-----------------------------------------------------------|-----------|
|
||||||
|
* | | | | | | | | | | | |- |= | | | | |
|
||||||
|
* |-----------------------------------------------------------|-----------|
|
||||||
|
* | |Q |W |F |P |G |J |L |U |Y |; |[ |] |\ | | | |
|
||||||
|
* |-----------------------------------------------------------|-----------|
|
||||||
|
* | |A |R |S |T |D |H |N |E |I |O |' | | |
|
||||||
|
* |-----------------------------------------------------------|-----------|
|
||||||
|
* | |Z |X |C |V |B |K |M |, |. |/ | | | | | |
|
||||||
|
* |-----------------------------------------------------------|-----------|
|
||||||
|
* | | | | | | | | | | |
|
||||||
|
* *-----------------------------------------------------------------------*
|
||||||
|
*/
|
||||||
|
[_CL] = LAYOUT_all( \
|
||||||
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, \
|
||||||
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, \
|
||||||
|
_______, KC_Q , KC_W , KC_F , KC_P , KC_G , KC_J , KC_L , KC_U , KC_Y , KC_SCLN, _______, _______, _______, _______, _______, _______, \
|
||||||
|
_______, KC_A , KC_R , KC_S , KC_T , KC_D , KC_H , KC_N , KC_E , KC_I , KC_O , _______, _______, _______, \
|
||||||
|
_______, _______, KC_Z , KC_X , KC_C , KC_V , KC_B , KC_K , KC_M , KC_COMM, KC_DOT , KC_SLSH, _______, _______, _______, \
|
||||||
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ \
|
||||||
|
),
|
||||||
|
/*#### _FL: Function Layer.
|
||||||
|
* .-----------------------------------------------------------------------.
|
||||||
|
* | ||||| | | | ||| | | | ||| |VlM|VlD|VlU| | | |
|
||||||
|
* .-----------------------------------------------------------|-----------|
|
||||||
|
* |Web| | | | | | | | | | | | | | | | |
|
||||||
|
* |-----------------------------------------------------------|-----------|
|
||||||
|
* |Fn_AL| | | | | | | | | | | | | | | | |
|
||||||
|
* |-----------------------------------------------------------|-----------|
|
||||||
|
* | | | | | | | |Lft|Dwn|Up |Rgt| | | |
|
||||||
|
* |-----------------------------------------------------------|-----------|
|
||||||
|
* | | | | | | | | | | | | |Fn | | | |
|
||||||
|
* |-----------------------------------------------------------|-----------|
|
||||||
|
* | | | | SP4 | |Fn | |WBk| |WFw|
|
||||||
|
* *-----------------------------------------------------------------------*
|
||||||
|
*/
|
||||||
|
[_FL] = LAYOUT_all( \
|
||||||
|
XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_MUTE, KC_VOLD, KC_VOLU, XXXXXXX, XXXXXXX, XXXXXXX, \
|
||||||
|
KC_WEB, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, \
|
||||||
|
MO(_AL), XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, \
|
||||||
|
XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, \
|
||||||
|
XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, _______, XXXXXXX, \
|
||||||
|
XXXXXXX, XXXXXXX, KC_MENU, KC_SP4, XXXXXXX, _______, XXXXXXX, XXXXXXX, KC_WBAK, XXXXXXX, KC_WFWD \
|
||||||
|
),
|
||||||
|
/*#### _AL: Adjust Layer - Keymap select, LED backlight, and Dynamic Macro settings.
|
||||||
|
* .-----------------------------------------------------------------------.
|
||||||
|
* |Rst||||| | | | ||| | | | ||| | | | | | | |
|
||||||
|
* .-----------------------------------------------------------|-----------|
|
||||||
|
* |Rev|Tog|Mod|H- |H+ |S- |S+ |V- |V+ | |BLT|BL-|BL+| | |MR1|MP1|
|
||||||
|
* |-----------------------------------------------------------|-----------|
|
||||||
|
* |Fn_AL|_BL|_WL| | | | | | | | | | | | MS|MR2|MP2|
|
||||||
|
* |-----------------------------------------------------------|-----------|
|
||||||
|
* | | | |_DL| | | | | | | | | | |
|
||||||
|
* |-----------------------------------------------------------|-----------|
|
||||||
|
* | | | |_CL| |_BL|_NL| | | | | |Fn | | | |
|
||||||
|
* |-----------------------------------------------------------|-----------|
|
||||||
|
* | | | | | |Fn | | | | |
|
||||||
|
* *-----------------------------------------------------------------------*
|
||||||
|
*/
|
||||||
|
[_AL] = LAYOUT_all( \
|
||||||
|
RESET, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, \
|
||||||
|
QMK_REV, RGB_TOG, RGB_MOD, RGB_HUD, RGB_HUI, RGB_SAD, RGB_SAI, RGB_VAD, RGB_VAI, XXXXXXX, BL_TOGG, BL_DEC, BL_INC, XXXXXXX, XXXXXXX, XXXXXXX, KC_DMR1, KC_DMP1, \
|
||||||
|
_______, DF(_BL), DF(_WL), XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_DMRS, KC_DMR2, KC_DMP2, \
|
||||||
|
XXXXXXX, XXXXXXX, XXXXXXX, DF(_DL), XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, \
|
||||||
|
XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, DF(_CL), XXXXXXX, DF(_BL), DF(_NL), XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, _______, XXXXXXX, \
|
||||||
|
XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, _______, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX \
|
||||||
|
),
|
||||||
|
};
|
||||||
|
|
||||||
|
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
||||||
|
switch (keycode) {
|
||||||
|
case QMK_REV:
|
||||||
|
if (record->event.pressed) {
|
||||||
|
SEND_STRING(QMK_KEYBOARD "/" QMK_KEYMAP "@" QMK_VERSION ":" QMK_BUILDDATE);
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
break;
|
||||||
|
case KC_WEB:
|
||||||
|
if (record->event.pressed) {
|
||||||
|
SEND_STRING(SS_LGUI("r"));
|
||||||
|
wait_ms(100);
|
||||||
|
SEND_STRING("chrome.exe\n");
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
break;
|
||||||
|
case KC_SP4:
|
||||||
|
if (record->event.pressed) {
|
||||||
|
SEND_STRING (" ");
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
// Dynamic Macros.
|
||||||
|
if (!process_record_dynamic_macro(keycode, record)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
void custom_backlight_level(uint8_t level) {
|
||||||
|
if (level > BACKLIGHT_LEVELS)
|
||||||
|
level = BACKLIGHT_LEVELS;
|
||||||
|
backlight_config.level = level;
|
||||||
|
backlight_config.enable = !!backlight_config.level;
|
||||||
|
backlight_set(backlight_config.level);
|
||||||
|
}
|
||||||
|
|
||||||
|
void matrix_init_user(void) {
|
||||||
|
#ifdef BACKLIGHT_ENABLE
|
||||||
|
custom_backlight_level(0);
|
||||||
|
#endif
|
||||||
|
#ifdef RGBLIGHT_ENABLE
|
||||||
|
rgblight_mode(1);
|
||||||
|
rgblight_sethsv_noeeprom(180,100,100);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
void matrix_scan_user(void) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
uint32_t layer_state_set_user(uint32_t state) {
|
||||||
|
switch (biton32(state)) {
|
||||||
|
case _BL:
|
||||||
|
custom_backlight_level(0);
|
||||||
|
rgblight_sethsv_noeeprom(180,100,255);
|
||||||
|
break;
|
||||||
|
case _WL:
|
||||||
|
case _NL:
|
||||||
|
case _DL:
|
||||||
|
case _CL:
|
||||||
|
custom_backlight_level(1);
|
||||||
|
rgblight_sethsv_noeeprom(230,255,255);
|
||||||
|
break;
|
||||||
|
case _FL:
|
||||||
|
custom_backlight_level(2);
|
||||||
|
rgblight_sethsv_noeeprom(280,255,255);
|
||||||
|
break;
|
||||||
|
case _AL:
|
||||||
|
custom_backlight_level(3);
|
||||||
|
rgblight_sethsv_noeeprom(350,255,255);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
custom_backlight_level(0);
|
||||||
|
rgblight_sethsv_noeeprom(180,100,100);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
return state;
|
||||||
|
}
|
||||||
|
|
||||||
|
void led_init_ports(void) {
|
||||||
|
DDRD |= (1<<5); // OUT
|
||||||
|
DDRE |= (1<<6); // OUT
|
||||||
|
}
|
||||||
|
|
||||||
|
void led_set_user(uint8_t usb_led) {
|
||||||
|
if (usb_led & (1 << USB_LED_CAPS_LOCK)) {
|
||||||
|
DDRD |= (1 << 5); PORTD &= ~(1 << 5);
|
||||||
|
} else {
|
||||||
|
DDRD &= ~(1 << 5); PORTD &= ~(1 << 5);
|
||||||
|
}
|
||||||
|
if (usb_led & (1 << USB_LED_SCROLL_LOCK)) {
|
||||||
|
DDRE |= (1 << 6); PORTE &= ~(1 << 6);
|
||||||
|
} else {
|
||||||
|
DDRE &= ~(1 << 6); PORTE &= ~(1 << 6);
|
||||||
|
}
|
||||||
|
}
|
||||||
114
keyboards/h87a/keymaps/gam3cat/readme.md
Normal file
114
keyboards/h87a/keymaps/gam3cat/readme.md
Normal file
@@ -0,0 +1,114 @@
|
|||||||
|
# Keymap Maintainer: Gam3cat
|
||||||
|
make h87a:gam3cat
|
||||||
|
## Layout Config:
|
||||||
|
2u backspace, 2.25u lshift/enter, [2.75u rshift] or [1.75u rshift, 1u Fn].
|
||||||
|
[1.5u, 1u, 1.5u 1x7.0u, 1.5u, 1u, 1.5u, 3x1u] or [2x1.5u, 1x7.0u, 2x1.5u, 3x1u] bottom row.
|
||||||
|
|
||||||
|
## Base Layer Selection:
|
||||||
|
(Fn+TAB+( )): (Q)WERTY, (W)orkman, (N)orman, (D)vorak, (C)olmak
|
||||||
|
|
||||||
|
### Base Layer Options:
|
||||||
|
#### _BL: Base Layer - Standard TKL QWERTY layout.
|
||||||
|
.-----------------------------------------------------------------------.
|
||||||
|
|Esc|||||F1 |F2 |F3 |F4 |||F5 |F6 |F7 |F8 |||F9 |F10|F11|F12|PSc|SLk|Pau|
|
||||||
|
|-----------------------------------------------------------|-----------|
|
||||||
|
|~ |1 |2 |3 |4 |5 |6 |7 |8 |9 |0 |- |= |Backsp |Ins|Hom|PgU|
|
||||||
|
|-----------------------------------------------------------|-----------|
|
||||||
|
|Tab |Q |W |E |R |T |Y |U |I |O |P |[ |] |\ |Del|End|PgD|
|
||||||
|
|-----------------------------------------------------------|-----------|
|
||||||
|
|Caps |A |S |D |F |G |H |J |K |L |; |' |Return | |
|
||||||
|
|-----------------------------------------------------------|-----------|
|
||||||
|
|Shift |Z |X |C |V |B |N |M |, |. |/ |Shift |Fn | | Up| |
|
||||||
|
|-----------------------------------------------------------|-----------|
|
||||||
|
|Ctrl |Win|Alt | Space |RAlt |Fn |Ctrl |Lft|Dwn|Rgt|
|
||||||
|
*-----------------------------------------------------------------------*
|
||||||
|
|
||||||
|
#### _WL: Workman Layer.
|
||||||
|
.-----------------------------------------------------------------------.
|
||||||
|
| ||||| | | | ||| | | | ||| | | | | | | |
|
||||||
|
.-----------------------------------------------------------|-----------|
|
||||||
|
| | | | | | | | | | | |- |= | | | | |
|
||||||
|
|-----------------------------------------------------------|-----------|
|
||||||
|
| |Q |D |R |W |B |J |F |U |P |; |[ |] |\ | | | |
|
||||||
|
|-----------------------------------------------------------|-----------|
|
||||||
|
| |A |S |H |T |G |Y |N |E |O |I |' | | |
|
||||||
|
|-----------------------------------------------------------|-----------|
|
||||||
|
| |Z |X |M |C |V |K |L |, |. |/ | | | | | |
|
||||||
|
|-----------------------------------------------------------|-----------|
|
||||||
|
| | | | | | | | | | |
|
||||||
|
*-----------------------------------------------------------------------*
|
||||||
|
|
||||||
|
#### _NL: Norman Layer.
|
||||||
|
.-----------------------------------------------------------------------.
|
||||||
|
| ||||| | | | ||| | | | ||| | | | | | | |
|
||||||
|
.-----------------------------------------------------------|-----------|
|
||||||
|
| | | | | | | | | | | |- |= | | | | |
|
||||||
|
|-----------------------------------------------------------|-----------|
|
||||||
|
| |Q |W |D |F |K |J |U |R |L |; |[ |] |\ | | | |
|
||||||
|
|-----------------------------------------------------------|-----------|
|
||||||
|
| |A |S |E |T |G |Y |N |I |O |H |' | | |
|
||||||
|
|-----------------------------------------------------------|-----------|
|
||||||
|
| |Z |X |C |V |B |P |M |, |. |/ | | | | | |
|
||||||
|
|-----------------------------------------------------------|-----------|
|
||||||
|
| | | | | | | | | | |
|
||||||
|
*-----------------------------------------------------------------------*
|
||||||
|
|
||||||
|
#### _DL: Dvorak Layer.
|
||||||
|
.-----------------------------------------------------------------------.
|
||||||
|
| ||||| | | | ||| | | | ||| | | | | | | |
|
||||||
|
.-----------------------------------------------------------|-----------|
|
||||||
|
| | | | | | | | | | | |[ |] | | | | |
|
||||||
|
|-----------------------------------------------------------|-----------|
|
||||||
|
| |' |, |. |P |Y |F |G |C |R |L |/ |= |\ | | | |
|
||||||
|
|-----------------------------------------------------------|-----------|
|
||||||
|
| |A |O |E |U |I |D |H |T |N |S |- | | |
|
||||||
|
|-----------------------------------------------------------|-----------|
|
||||||
|
| |; |Q |J |K |X |B |M |W |V |Z | | | | | |
|
||||||
|
|-----------------------------------------------------------|-----------|
|
||||||
|
| | | | | | | | | | |
|
||||||
|
*-----------------------------------------------------------------------*
|
||||||
|
|
||||||
|
#### _CL: Colmak Layer.
|
||||||
|
.-----------------------------------------------------------------------.
|
||||||
|
| ||||| | | | ||| | | | ||| | | | | | | |
|
||||||
|
.-----------------------------------------------------------|-----------|
|
||||||
|
| | | | | | | | | | | |- |= | | | | |
|
||||||
|
|-----------------------------------------------------------|-----------|
|
||||||
|
| |Q |W |F |P |G |J |L |U |Y |; |[ |] |\ | | | |
|
||||||
|
|-----------------------------------------------------------|-----------|
|
||||||
|
| |A |R |S |T |D |H |N |E |I |O |' | | |
|
||||||
|
|-----------------------------------------------------------|-----------|
|
||||||
|
| |Z |X |C |V |B |K |M |, |. |/ | | | | | |
|
||||||
|
|-----------------------------------------------------------|-----------|
|
||||||
|
| | | | | | | | | | |
|
||||||
|
*-----------------------------------------------------------------------*
|
||||||
|
|
||||||
|
#### _FL: Function Layer.
|
||||||
|
.-----------------------------------------------------------------------.
|
||||||
|
| ||||| | | | ||| | | | ||| |VlM|VlD|VlU| | | |
|
||||||
|
.-----------------------------------------------------------|-----------|
|
||||||
|
|Web| | | | | | | | | | | | | | | | |
|
||||||
|
|-----------------------------------------------------------|-----------|
|
||||||
|
|Fn_AL| | | | | | | | | | | | | | | | |
|
||||||
|
|-----------------------------------------------------------|-----------|
|
||||||
|
| | | | | | | |Lft|Dwn|Up |Rgt| | | |
|
||||||
|
|-----------------------------------------------------------|-----------|
|
||||||
|
| | | | | | | | | | | | |Fn | | | |
|
||||||
|
|-----------------------------------------------------------|-----------|
|
||||||
|
| | | | SP4 | |Fn | |WBk| |WFw|
|
||||||
|
*-----------------------------------------------------------------------*
|
||||||
|
|
||||||
|
#### _AL: Adjust Layer - Keymap select, LED backlight, and Dynamic Macro settings.
|
||||||
|
.-----------------------------------------------------------------------.
|
||||||
|
|Rst||||| | | | ||| | | | ||| | | | | | | |
|
||||||
|
.-----------------------------------------------------------|-----------|
|
||||||
|
|Rev|Tog|Mod|H- |H+ |S- |S+ |V- |V+ | |BLT|BL-|BL+| | |MR1|MP1|
|
||||||
|
|-----------------------------------------------------------|-----------|
|
||||||
|
|Fn_AL|_BL|_WL| | | | | | | | | | | | MS|MR2|MP2|
|
||||||
|
|-----------------------------------------------------------|-----------|
|
||||||
|
| | | |_DL| | | | | | | | | | |
|
||||||
|
|-----------------------------------------------------------|-----------|
|
||||||
|
| | | |_CL| |_BL|_NL| | | | | |Fn | | | |
|
||||||
|
|-----------------------------------------------------------|-----------|
|
||||||
|
| | | | | |Fn | | | | |
|
||||||
|
*-----------------------------------------------------------------------*
|
||||||
24
keyboards/h87a/keymaps/gam3cat/rules.mk
Normal file
24
keyboards/h87a/keymaps/gam3cat/rules.mk
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
# Build Options
|
||||||
|
# change to "no" to disable the options, or define them in the Makefile in
|
||||||
|
# the appropriate keymap folder that will get included automatically
|
||||||
|
#
|
||||||
|
TAP_DANCE_ENABLE = no # Enable TapDance functionality
|
||||||
|
RGBLIGHT_ENABLE = yes # Enable WS2812 RGB underlight.
|
||||||
|
BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000)
|
||||||
|
MOUSEKEY_ENABLE = no # Mouse keys(+1500)
|
||||||
|
EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
|
||||||
|
CONSOLE_ENABLE = no # Console for debug(+400)
|
||||||
|
COMMAND_ENABLE = no # Commands for debug and configuration
|
||||||
|
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
||||||
|
NKRO_ENABLE = yes # Nkey Rollover - If this doesn't work, add this to config.h: #define FORCE_NKRO
|
||||||
|
BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality
|
||||||
|
MIDI_ENABLE = no # MIDI controls
|
||||||
|
UNICODE_ENABLE = no # Unicode
|
||||||
|
UNICODEMAP_ENABLE = no # Enable extended unicode
|
||||||
|
BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
|
||||||
|
AUDIO_ENABLE = no # Audio output on port C6
|
||||||
|
FAUXCLICKY_ENABLE = no # Uses buzzer to emulate clicky switches. By default, uses the C6 pin, same as AUDIO_ENABLE.
|
||||||
|
#VARIABLE_TRACE = no # Use this to debug changes to variable values
|
||||||
|
API_SYSEX_ENABLE = no # This enables using the Quantum SYSEX API to send strings(+5390)
|
||||||
|
KEY_LOCK_ENABLE = no # This enables key lock(+260)
|
||||||
|
SPLIT_KEYBOARD = no # This enables split keyboard support and includes all necessary files located at quantum/split_common
|
||||||
@@ -148,13 +148,26 @@
|
|||||||
#define FB_BRAKEFACTOR 6 /* For 1x:0, 2x:1, 3x:2, 4x:3, 6x:4, 8x:5, 16x:6, Disable Braking:7 */
|
#define FB_BRAKEFACTOR 6 /* For 1x:0, 2x:1, 3x:2, 4x:3, 6x:4, 8x:5, 16x:6, Disable Braking:7 */
|
||||||
#define FB_LOOPGAIN 1 /* For Low:0, Medium:1, High:2, Very High:3 */
|
#define FB_LOOPGAIN 1 /* For Low:0, Medium:1, High:2, Very High:3 */
|
||||||
|
|
||||||
|
/* default 3V ERM vibration motor voltage and library*/
|
||||||
|
#if FB_ERM_LRA == 0
|
||||||
|
#define RATED_VOLTAGE 3
|
||||||
|
#define V_RMS 2.3
|
||||||
|
#define V_PEAK 3.30
|
||||||
|
/* Library Selection */
|
||||||
|
#define LIB_SELECTION 4 /* For Empty:0' TS2200 library A to D:1-5, LRA Library: 6 */
|
||||||
|
|
||||||
|
/* default 2V LRA voltage and library */
|
||||||
|
#elif FB_ERM_LRA == 1
|
||||||
#define RATED_VOLTAGE 2
|
#define RATED_VOLTAGE 2
|
||||||
#define V_RMS 2.0
|
#define V_RMS 2.0
|
||||||
#define V_PEAK 2.85
|
#define V_PEAK 2.85
|
||||||
#define F_LRA 205
|
#define F_LRA 200
|
||||||
/* Library Selection */
|
/* Library Selection */
|
||||||
#define LIB_SELECTION 6 /* For Empty:0' TS2200 library A to D:1-5, LRA Library: 6 */
|
#define LIB_SELECTION 6 /* For Empty:0' TS2200 library A to D:1-5, LRA Library: 6 */
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
/* Control 1 register settings */
|
/* Control 1 register settings */
|
||||||
#define DRIVE_TIME 25
|
#define DRIVE_TIME 25
|
||||||
#define AC_COUPLE 0
|
#define AC_COUPLE 0
|
||||||
@@ -179,14 +192,11 @@
|
|||||||
#define ZC_DET_TIME 0
|
#define ZC_DET_TIME 0
|
||||||
#define AUTO_CAL_TIME 3
|
#define AUTO_CAL_TIME 3
|
||||||
|
|
||||||
//#define WS2812_LED_N 2
|
//#define RGBLIGHT_ANIMATIONS
|
||||||
//#define RGBLED_NUM WS2812_LED_N
|
|
||||||
//#define WS2812_TIM_N 2
|
|
||||||
//#define WS2812_TIM_CH 2
|
|
||||||
//#define PORT_WS2812 GPIOA
|
|
||||||
//#define PIN_WS2812 15
|
|
||||||
//#define WS2812_DMA_STREAM STM32_DMA1_STREAM2 // DMA stream for TIMx_UP (look up in reference manual under DMA Channel selection)
|
|
||||||
//#define WS2812_DMA_CHANNEL 7 // DMA channel for TIMx_UP
|
|
||||||
//#define WS2812_EXTERNAL_PULLUP
|
|
||||||
|
|
||||||
|
//#define RGBLED_NUM 10
|
||||||
|
//#define RGB_DI_PIN B5
|
||||||
|
//#define DRIVER_LED_TOTAL RGBLED_NUM
|
||||||
|
|
||||||
|
//#define RGB_MATRIX_KEYPRESSES
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -82,7 +82,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|||||||
[_LOWER] = LAYOUT_wrapper(
|
[_LOWER] = LAYOUT_wrapper(
|
||||||
KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_BSPC, \
|
KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_BSPC, \
|
||||||
KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, _______, _______, _______, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_DEL, \
|
KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, _______, _______, _______, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_DEL, \
|
||||||
_______, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, _______, _______, _______, KC_F6, KC_UNDS, KC_PLUS, KC_LBRC, KC_RBRC, KC_PIPE, \
|
_______, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, _______, _______, _______, KC_F6, KC_UNDS, KC_EQL, KC_LBRC, KC_RBRC, KC_PIPE, \
|
||||||
_______, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, _______, _______, _______, KC_F12,S(KC_NUHS),S(KC_NUBS),_______,_______, _______, \
|
_______, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, _______, _______, _______, KC_F12,S(KC_NUHS),S(KC_NUBS),_______,_______, _______, \
|
||||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_MNXT, KC_VOLD, KC_VOLU, KC_MPLY \
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_MNXT, KC_VOLD, KC_VOLU, KC_MPLY \
|
||||||
),
|
),
|
||||||
|
|||||||
@@ -159,7 +159,7 @@
|
|||||||
#define STM32_I2C_BUSY_TIMEOUT 50
|
#define STM32_I2C_BUSY_TIMEOUT 50
|
||||||
#define STM32_I2C_I2C1_IRQ_PRIORITY 10
|
#define STM32_I2C_I2C1_IRQ_PRIORITY 10
|
||||||
#define STM32_I2C_I2C2_IRQ_PRIORITY 10
|
#define STM32_I2C_I2C2_IRQ_PRIORITY 10
|
||||||
#define STM32_I2C_USE_DMA TRUE
|
#define STM32_I2C_USE_DMA FALSE
|
||||||
#define STM32_I2C_I2C1_DMA_PRIORITY 1
|
#define STM32_I2C_I2C1_DMA_PRIORITY 1
|
||||||
#define STM32_I2C_I2C2_DMA_PRIORITY 1
|
#define STM32_I2C_I2C2_DMA_PRIORITY 1
|
||||||
#define STM32_I2C_DMA_ERROR_HOOK(i2cp) osalSysHalt("DMA failure")
|
#define STM32_I2C_DMA_ERROR_HOOK(i2cp) osalSysHalt("DMA failure")
|
||||||
|
|||||||
@@ -8,14 +8,14 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|||||||
KC_LALT, FR_AMP, FR_EACU, FR_QUOT, FR_APOS, FR_LPRN, KC_BSPACE, KC_DELETE, FR_MINS, FR_EGRV, FR_UNDS, FR_CCED, FR_AGRV, FR_RPRN, FR_EQL, KC_INSERT, KC_HOME, KC_PGUP,\
|
KC_LALT, FR_AMP, FR_EACU, FR_QUOT, FR_APOS, FR_LPRN, KC_BSPACE, KC_DELETE, FR_MINS, FR_EGRV, FR_UNDS, FR_CCED, FR_AGRV, FR_RPRN, FR_EQL, KC_INSERT, KC_HOME, KC_PGUP,\
|
||||||
KC_LGUI, FR_A, FR_Z, KC_E, KC_R, KC_T, KC_LSFT, KC_ENT, KC_Y, KC_U, KC_I, KC_O, KC_P, FR_CIRC, FR_DLR, KC_DELETE, KC_END, KC_PGDOWN, KC_KP_PLUS,\
|
KC_LGUI, FR_A, FR_Z, KC_E, KC_R, KC_T, KC_LSFT, KC_ENT, KC_Y, KC_U, KC_I, KC_O, KC_P, FR_CIRC, FR_DLR, KC_DELETE, KC_END, KC_PGDOWN, KC_KP_PLUS,\
|
||||||
KC_LCTL, FR_Q, KC_S, KC_D, KC_F, KC_G, KC_ENT, KC_H, KC_J, KC_K, KC_L, FR_M, FR_UGRV, FR_ASTR, KC_KP_1, KC_UP, KC_KP_3,\
|
KC_LCTL, FR_Q, KC_S, KC_D, KC_F, KC_G, KC_ENT, KC_H, KC_J, KC_K, KC_L, FR_M, FR_UGRV, FR_ASTR, KC_KP_1, KC_UP, KC_KP_3,\
|
||||||
FR_LESS, FR_W, KC_X, KC_C, KC_V, KC_B, KC_SPACE, KC_SPACE, KC_N, FR_COMM, FR_SCLN, FR_COLN, FR_EXLM, FR_ALGR, KC_LEFT, KC_DOWN, KC_RIGHT, KC_KP_ENTER),
|
FR_LESS, FR_W, KC_X, KC_C, KC_V, KC_B, KC_SPACE, KC_SPACE, KC_N, FR_COMM, FR_SCLN, FR_COLN, FR_EXLM, KC_ALGR, KC_LEFT, KC_DOWN, KC_RIGHT, KC_KP_ENTER),
|
||||||
|
|
||||||
[1] = KEYMAP(
|
[1] = KEYMAP(
|
||||||
KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_TAB, KC_CAPS, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_FN0, KC_KP_SLASH, KC_KP_ASTERISK, KC_KP_MINUS,\
|
KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_TAB, KC_CAPS, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_FN0, KC_KP_SLASH, KC_KP_ASTERISK, KC_KP_MINUS,\
|
||||||
KC_LALT, FR_AMP, FR_EACU, FR_QUOT, FR_APOS, FR_LPRN, KC_BSPACE, KC_DELETE, FR_MINS, FR_EGRV, FR_UNDS, FR_CCED, FR_AGRV, FR_RPRN, FR_EQL, KC_7, KC_8, KC_9,\
|
KC_LALT, FR_AMP, FR_EACU, FR_QUOT, FR_APOS, FR_LPRN, KC_BSPACE, KC_DELETE, FR_MINS, FR_EGRV, FR_UNDS, FR_CCED, FR_AGRV, FR_RPRN, FR_EQL, KC_7, KC_8, KC_9,\
|
||||||
KC_LGUI, FR_A, FR_Z, KC_E, KC_R, KC_T, KC_LSFT, KC_ENT, KC_Y, KC_U, KC_I, KC_O, KC_P, FR_CIRC, FR_DLR, KC_4, KC_5, KC_6, KC_KP_PLUS,\
|
KC_LGUI, FR_A, FR_Z, KC_E, KC_R, KC_T, KC_LSFT, KC_ENT, KC_Y, KC_U, KC_I, KC_O, KC_P, FR_CIRC, FR_DLR, KC_4, KC_5, KC_6, KC_KP_PLUS,\
|
||||||
KC_LCTL, FR_Q, KC_S, KC_D, KC_F, KC_G, KC_ENT, KC_H, KC_J, KC_K, KC_L, FR_M, FR_UGRV, FR_ASTR, KC_1, KC_2, KC_3,\
|
KC_LCTL, FR_Q, KC_S, KC_D, KC_F, KC_G, KC_ENT, KC_H, KC_J, KC_K, KC_L, FR_M, FR_UGRV, FR_ASTR, KC_1, KC_2, KC_3,\
|
||||||
FR_LESS, FR_W, KC_X, KC_C, KC_V, KC_B, KC_SPACE, KC_SPACE, KC_N, FR_COMM, FR_SCLN, FR_COLN, FR_EXLM, FR_ALGR, KC_LEFT, KC_DOWN, KC_RIGHT, KC_KP_ENTER),
|
FR_LESS, FR_W, KC_X, KC_C, KC_V, KC_B, KC_SPACE, KC_SPACE, KC_N, FR_COMM, FR_SCLN, FR_COLN, FR_EXLM, KC_ALGR, KC_LEFT, KC_DOWN, KC_RIGHT, KC_KP_ENTER),
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
52
keyboards/handwired/tradestation/config.h
Normal file
52
keyboards/handwired/tradestation/config.h
Normal file
@@ -0,0 +1,52 @@
|
|||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "config_common.h"
|
||||||
|
|
||||||
|
/* USB Device descriptor parameter */
|
||||||
|
#define VENDOR_ID 0xFEED
|
||||||
|
#define PRODUCT_ID 0x6060
|
||||||
|
#define DEVICE_VER 0x0001
|
||||||
|
#define MANUFACTURER Flehrad
|
||||||
|
#define PRODUCT Trade Station
|
||||||
|
#define DESCRIPTION A Pro Micro-powered macropad layout by Didier Luximon. 1/8U gap space top two rows and 1/4U gap between 2U bottom two rows.
|
||||||
|
|
||||||
|
/* key matrix size */
|
||||||
|
#define MATRIX_ROWS 4
|
||||||
|
#define MATRIX_COLS 4
|
||||||
|
|
||||||
|
/* key matrix pins */
|
||||||
|
#define MATRIX_ROW_PINS { D1, C6, D4, D0 }
|
||||||
|
#define MATRIX_COL_PINS { F7, B1, D7, E6 }
|
||||||
|
#define UNUSED_PINS
|
||||||
|
|
||||||
|
/* COL2ROW or ROW2COL */
|
||||||
|
#define DIODE_DIRECTION COL2ROW
|
||||||
|
|
||||||
|
/* number of backlight levels */
|
||||||
|
|
||||||
|
#ifdef BACKLIGHT_PIN
|
||||||
|
#define BACKLIGHT_LEVELS 3
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Set 0 if debouncing isn't needed */
|
||||||
|
#define DEBOUNCING_DELAY 5
|
||||||
|
|
||||||
|
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
|
||||||
|
#define LOCKING_SUPPORT_ENABLE
|
||||||
|
|
||||||
|
/* Locking resynchronize hack */
|
||||||
|
#define LOCKING_RESYNC_ENABLE
|
||||||
|
|
||||||
|
/* key combination for command */
|
||||||
|
#define IS_COMMAND() ( \
|
||||||
|
keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)) \
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef RGB_DI_PIN
|
||||||
|
#define RGBLIGHT_ANIMATIONS
|
||||||
|
#define RGBLED_NUM 5
|
||||||
|
#define RGBLIGHT_HUE_STEP 8
|
||||||
|
#define RGBLIGHT_SAT_STEP 8
|
||||||
|
#define RGBLIGHT_VAL_STEP 8
|
||||||
|
#endif
|
||||||
15
keyboards/handwired/tradestation/info.json
Normal file
15
keyboards/handwired/tradestation/info.json
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"keyboard_name": "Tradestation",
|
||||||
|
"url": "",
|
||||||
|
"maintainer": "Flehrad",
|
||||||
|
"bootloader": "",
|
||||||
|
"width": 4.3,
|
||||||
|
"height": 4.5,
|
||||||
|
"layouts": {
|
||||||
|
"LAYOUT_tradestation": {
|
||||||
|
"layout": [{"x":0, "y":0}, {"x":1.1, "y":0}, {"x":2.2, "y":0}, {"x":3.3, "y":0}, {"x":0, "y":1.1}, {"x":1.1, "y":1.1}, {"x":2.2, "y":1.1}, {"x":3.3, "y":1.1}, {"x":0, "y":2.25, "w":2}, {"x":2.25, "y":2.25, "w":2}, {"x":0, "y":3.5, "w":2}, {"x":2.25, "y":3.5, "w":2}]
|
||||||
|
},
|
||||||
|
"LAYOUT_ortho_4x4": {
|
||||||
|
"layout": [{"x":0, "y":0}, {"x":1.1, "y":0}, {"x":2.2, "y":0}, {"x":3.3, "y":0}, {"x":0, "y":1.1}, {"x":1.1, "y":1.1}, {"x":2.2, "y":1.1}, {"x":3.3, "y":1.1}, {"x":0, "y":2.25}, {"x":1, "y":2.25}, {"x":2.25, "y":2.25}, {"x":3.25, "y":2.25}, {"x":0, "y":3.5}, {"x":1, "y":3.5}, {"x":2.25, "y":3.5}, {"x":3.25, "y":3.5}]
|
||||||
|
}
|
||||||
|
}
|
||||||
61
keyboards/handwired/tradestation/keymaps/default/keymap.c
Normal file
61
keyboards/handwired/tradestation/keymaps/default/keymap.c
Normal file
@@ -0,0 +1,61 @@
|
|||||||
|
#include QMK_KEYBOARD_H
|
||||||
|
|
||||||
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||||
|
|
||||||
|
LAYOUT_ortho_4x4(
|
||||||
|
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
|
||||||
|
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
|
||||||
|
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
|
||||||
|
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS),
|
||||||
|
|
||||||
|
LAYOUT_tradestation(
|
||||||
|
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
|
||||||
|
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
|
||||||
|
KC_TRNS, KC_TRNS,
|
||||||
|
KC_TRNS, KC_TRNS),
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
void matrix_init_user(void) {
|
||||||
|
}
|
||||||
|
|
||||||
|
void matrix_scan_user(void) {
|
||||||
|
}
|
||||||
|
|
||||||
|
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
void led_set_user(uint8_t usb_led) {
|
||||||
|
|
||||||
|
if (usb_led & (1 << USB_LED_NUM_LOCK)) {
|
||||||
|
|
||||||
|
} else {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
if (usb_led & (1 << USB_LED_CAPS_LOCK)) {
|
||||||
|
|
||||||
|
} else {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
if (usb_led & (1 << USB_LED_SCROLL_LOCK)) {
|
||||||
|
|
||||||
|
} else {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
if (usb_led & (1 << USB_LED_COMPOSE)) {
|
||||||
|
|
||||||
|
} else {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
if (usb_led & (1 << USB_LED_KANA)) {
|
||||||
|
|
||||||
|
} else {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
201
keyboards/handwired/tradestation/license
Normal file
201
keyboards/handwired/tradestation/license
Normal file
@@ -0,0 +1,201 @@
|
|||||||
|
Apache License
|
||||||
|
Version 2.0, January 2004
|
||||||
|
http://www.apache.org/licenses/
|
||||||
|
|
||||||
|
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||||
|
|
||||||
|
1. Definitions.
|
||||||
|
|
||||||
|
"License" shall mean the terms and conditions for use, reproduction,
|
||||||
|
and distribution as defined by Sections 1 through 9 of this document.
|
||||||
|
|
||||||
|
"Licensor" shall mean the copyright owner or entity authorized by
|
||||||
|
the copyright owner that is granting the License.
|
||||||
|
|
||||||
|
"Legal Entity" shall mean the union of the acting entity and all
|
||||||
|
other entities that control, are controlled by, or are under common
|
||||||
|
control with that entity. For the purposes of this definition,
|
||||||
|
"control" means (i) the power, direct or indirect, to cause the
|
||||||
|
direction or management of such entity, whether by contract or
|
||||||
|
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||||
|
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||||
|
|
||||||
|
"You" (or "Your") shall mean an individual or Legal Entity
|
||||||
|
exercising permissions granted by this License.
|
||||||
|
|
||||||
|
"Source" form shall mean the preferred form for making modifications,
|
||||||
|
including but not limited to software source code, documentation
|
||||||
|
source, and configuration files.
|
||||||
|
|
||||||
|
"Object" form shall mean any form resulting from mechanical
|
||||||
|
transformation or translation of a Source form, including but
|
||||||
|
not limited to compiled object code, generated documentation,
|
||||||
|
and conversions to other media types.
|
||||||
|
|
||||||
|
"Work" shall mean the work of authorship, whether in Source or
|
||||||
|
Object form, made available under the License, as indicated by a
|
||||||
|
copyright notice that is included in or attached to the work
|
||||||
|
(an example is provided in the Appendix below).
|
||||||
|
|
||||||
|
"Derivative Works" shall mean any work, whether in Source or Object
|
||||||
|
form, that is based on (or derived from) the Work and for which the
|
||||||
|
editorial revisions, annotations, elaborations, or other modifications
|
||||||
|
represent, as a whole, an original work of authorship. For the purposes
|
||||||
|
of this License, Derivative Works shall not include works that remain
|
||||||
|
separable from, or merely link (or bind by name) to the interfaces of,
|
||||||
|
the Work and Derivative Works thereof.
|
||||||
|
|
||||||
|
"Contribution" shall mean any work of authorship, including
|
||||||
|
the original version of the Work and any modifications or additions
|
||||||
|
to that Work or Derivative Works thereof, that is intentionally
|
||||||
|
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||||
|
or by an individual or Legal Entity authorized to submit on behalf of
|
||||||
|
the copyright owner. For the purposes of this definition, "submitted"
|
||||||
|
means any form of electronic, verbal, or written communication sent
|
||||||
|
to the Licensor or its representatives, including but not limited to
|
||||||
|
communication on electronic mailing lists, source code control systems,
|
||||||
|
and issue tracking systems that are managed by, or on behalf of, the
|
||||||
|
Licensor for the purpose of discussing and improving the Work, but
|
||||||
|
excluding communication that is conspicuously marked or otherwise
|
||||||
|
designated in writing by the copyright owner as "Not a Contribution."
|
||||||
|
|
||||||
|
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||||
|
on behalf of whom a Contribution has been received by Licensor and
|
||||||
|
subsequently incorporated within the Work.
|
||||||
|
|
||||||
|
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||||
|
this License, each Contributor hereby grants to You a perpetual,
|
||||||
|
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||||
|
copyright license to reproduce, prepare Derivative Works of,
|
||||||
|
publicly display, publicly perform, sublicense, and distribute the
|
||||||
|
Work and such Derivative Works in Source or Object form.
|
||||||
|
|
||||||
|
3. Grant of Patent License. Subject to the terms and conditions of
|
||||||
|
this License, each Contributor hereby grants to You a perpetual,
|
||||||
|
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||||
|
(except as stated in this section) patent license to make, have made,
|
||||||
|
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||||
|
where such license applies only to those patent claims licensable
|
||||||
|
by such Contributor that are necessarily infringed by their
|
||||||
|
Contribution(s) alone or by combination of their Contribution(s)
|
||||||
|
with the Work to which such Contribution(s) was submitted. If You
|
||||||
|
institute patent litigation against any entity (including a
|
||||||
|
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||||
|
or a Contribution incorporated within the Work constitutes direct
|
||||||
|
or contributory patent infringement, then any patent licenses
|
||||||
|
granted to You under this License for that Work shall terminate
|
||||||
|
as of the date such litigation is filed.
|
||||||
|
|
||||||
|
4. Redistribution. You may reproduce and distribute copies of the
|
||||||
|
Work or Derivative Works thereof in any medium, with or without
|
||||||
|
modifications, and in Source or Object form, provided that You
|
||||||
|
meet the following conditions:
|
||||||
|
|
||||||
|
(a) You must give any other recipients of the Work or
|
||||||
|
Derivative Works a copy of this License; and
|
||||||
|
|
||||||
|
(b) You must cause any modified files to carry prominent notices
|
||||||
|
stating that You changed the files; and
|
||||||
|
|
||||||
|
(c) You must retain, in the Source form of any Derivative Works
|
||||||
|
that You distribute, all copyright, patent, trademark, and
|
||||||
|
attribution notices from the Source form of the Work,
|
||||||
|
excluding those notices that do not pertain to any part of
|
||||||
|
the Derivative Works; and
|
||||||
|
|
||||||
|
(d) If the Work includes a "NOTICE" text file as part of its
|
||||||
|
distribution, then any Derivative Works that You distribute must
|
||||||
|
include a readable copy of the attribution notices contained
|
||||||
|
within such NOTICE file, excluding those notices that do not
|
||||||
|
pertain to any part of the Derivative Works, in at least one
|
||||||
|
of the following places: within a NOTICE text file distributed
|
||||||
|
as part of the Derivative Works; within the Source form or
|
||||||
|
documentation, if provided along with the Derivative Works; or,
|
||||||
|
within a display generated by the Derivative Works, if and
|
||||||
|
wherever such third-party notices normally appear. The contents
|
||||||
|
of the NOTICE file are for informational purposes only and
|
||||||
|
do not modify the License. You may add Your own attribution
|
||||||
|
notices within Derivative Works that You distribute, alongside
|
||||||
|
or as an addendum to the NOTICE text from the Work, provided
|
||||||
|
that such additional attribution notices cannot be construed
|
||||||
|
as modifying the License.
|
||||||
|
|
||||||
|
You may add Your own copyright statement to Your modifications and
|
||||||
|
may provide additional or different license terms and conditions
|
||||||
|
for use, reproduction, or distribution of Your modifications, or
|
||||||
|
for any such Derivative Works as a whole, provided Your use,
|
||||||
|
reproduction, and distribution of the Work otherwise complies with
|
||||||
|
the conditions stated in this License.
|
||||||
|
|
||||||
|
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||||
|
any Contribution intentionally submitted for inclusion in the Work
|
||||||
|
by You to the Licensor shall be under the terms and conditions of
|
||||||
|
this License, without any additional terms or conditions.
|
||||||
|
Notwithstanding the above, nothing herein shall supersede or modify
|
||||||
|
the terms of any separate license agreement you may have executed
|
||||||
|
with Licensor regarding such Contributions.
|
||||||
|
|
||||||
|
6. Trademarks. This License does not grant permission to use the trade
|
||||||
|
names, trademarks, service marks, or product names of the Licensor,
|
||||||
|
except as required for reasonable and customary use in describing the
|
||||||
|
origin of the Work and reproducing the content of the NOTICE file.
|
||||||
|
|
||||||
|
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||||
|
agreed to in writing, Licensor provides the Work (and each
|
||||||
|
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||||
|
implied, including, without limitation, any warranties or conditions
|
||||||
|
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||||
|
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||||
|
appropriateness of using or redistributing the Work and assume any
|
||||||
|
risks associated with Your exercise of permissions under this License.
|
||||||
|
|
||||||
|
8. Limitation of Liability. In no event and under no legal theory,
|
||||||
|
whether in tort (including negligence), contract, or otherwise,
|
||||||
|
unless required by applicable law (such as deliberate and grossly
|
||||||
|
negligent acts) or agreed to in writing, shall any Contributor be
|
||||||
|
liable to You for damages, including any direct, indirect, special,
|
||||||
|
incidental, or consequential damages of any character arising as a
|
||||||
|
result of this License or out of the use or inability to use the
|
||||||
|
Work (including but not limited to damages for loss of goodwill,
|
||||||
|
work stoppage, computer failure or malfunction, or any and all
|
||||||
|
other commercial damages or losses), even if such Contributor
|
||||||
|
has been advised of the possibility of such damages.
|
||||||
|
|
||||||
|
9. Accepting Warranty or Additional Liability. While redistributing
|
||||||
|
the Work or Derivative Works thereof, You may choose to offer,
|
||||||
|
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||||
|
or other liability obligations and/or rights consistent with this
|
||||||
|
License. However, in accepting such obligations, You may act only
|
||||||
|
on Your own behalf and on Your sole responsibility, not on behalf
|
||||||
|
of any other Contributor, and only if You agree to indemnify,
|
||||||
|
defend, and hold each Contributor harmless for any liability
|
||||||
|
incurred by, or claims asserted against, such Contributor by reason
|
||||||
|
of your accepting any such warranty or additional liability.
|
||||||
|
|
||||||
|
END OF TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
APPENDIX: How to apply the Apache License to your work.
|
||||||
|
|
||||||
|
To apply the Apache License to your work, attach the following
|
||||||
|
boilerplate notice, with the fields enclosed by brackets "[]"
|
||||||
|
replaced with your own identifying information. (Don't include
|
||||||
|
the brackets!) The text should be enclosed in the appropriate
|
||||||
|
comment syntax for the file format. We also recommend that a
|
||||||
|
file or class name and description of purpose be included on the
|
||||||
|
same "printed page" as the copyright notice for easier
|
||||||
|
identification within third-party archives.
|
||||||
|
|
||||||
|
Copyright [yyyy] [name of copyright owner]
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
25
keyboards/handwired/tradestation/readme.md
Normal file
25
keyboards/handwired/tradestation/readme.md
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
# Tradestation
|
||||||
|
QMK for Tradestation Macropad
|
||||||
|
|
||||||
|
This macropad was layout designed by Didier Luximon
|
||||||
|
|
||||||
|
This PCB supports an overall 4x4 matrix with unique spacing.
|
||||||
|
* Top two rows are 1U keys with 1/8U spacing
|
||||||
|
* Bottom two rows are available with 4x2 1U as clusters of 2x1U or as 2x2 2U, spaced with 1/4U
|
||||||
|
|
||||||
|
For QMK Configurator, the info.json is utilised.
|
||||||
|
- For 2U keys , the first 1u row/column key assignment is the same as the 2u position.
|
||||||
|
|
||||||
|
Build requires a pro micro.
|
||||||
|
|
||||||
|
Can be built as single PCB with custom case, or as two PCB style with standoffs.
|
||||||
|
|
||||||
|
If you like this simple PCB and want to make a donation, you can at https://paypal.me/theboardpodcast
|
||||||
|
|
||||||
|
Check out our:
|
||||||
|
|
||||||
|
YouTube (https://www.youtube.com/channel/UCg98oJZNffR9nDLJNkorjqw)
|
||||||
|
|
||||||
|
Podcast (www.libsyn.com/theboardpodcast)
|
||||||
|
|
||||||
|
Patreon (www.patreon.com/theboardpodcast)
|
||||||
65
keyboards/handwired/tradestation/rules.mk
Normal file
65
keyboards/handwired/tradestation/rules.mk
Normal file
@@ -0,0 +1,65 @@
|
|||||||
|
# MCU name
|
||||||
|
MCU = atmega32u4
|
||||||
|
|
||||||
|
# Processor frequency.
|
||||||
|
# This will define a symbol, F_CPU, in all source code files equal to the
|
||||||
|
# processor frequency in Hz. You can then use this symbol in your source code to
|
||||||
|
# calculate timings. Do NOT tack on a 'UL' at the end, this will be done
|
||||||
|
# automatically to create a 32-bit value in your source code.
|
||||||
|
#
|
||||||
|
# This will be an integer division of F_USB below, as it is sourced by
|
||||||
|
# F_USB after it has run through any CPU prescalers. Note that this value
|
||||||
|
# does not *change* the processor frequency - it should merely be updated to
|
||||||
|
# reflect the processor speed set externally so that the code can use accurate
|
||||||
|
# software delays.
|
||||||
|
F_CPU = 16000000
|
||||||
|
|
||||||
|
#
|
||||||
|
# LUFA specific
|
||||||
|
#
|
||||||
|
# Target architecture (see library "Board Types" documentation).
|
||||||
|
ARCH = AVR8
|
||||||
|
|
||||||
|
# Input clock frequency.
|
||||||
|
# This will define a symbol, F_USB, in all source code files equal to the
|
||||||
|
# input clock frequency (before any prescaling is performed) in Hz. This value may
|
||||||
|
# differ from F_CPU if prescaling is used on the latter, and is required as the
|
||||||
|
# raw input clock is fed directly to the PLL sections of the AVR for high speed
|
||||||
|
# clock generation for the USB and other AVR subsections. Do NOT tack on a 'UL'
|
||||||
|
# at the end, this will be done automatically to create a 32-bit value in your
|
||||||
|
# source code.
|
||||||
|
#
|
||||||
|
# If no clock division is performed on the input clock inside the AVR (via the
|
||||||
|
# CPU clock adjust registers or the clock division fuses), this will be equal to F_CPU.
|
||||||
|
F_USB = $(F_CPU)
|
||||||
|
|
||||||
|
# Interrupt driven control endpoint task(+60)
|
||||||
|
OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT
|
||||||
|
|
||||||
|
# Bootloader selection
|
||||||
|
# Teensy halfkay
|
||||||
|
# Pro Micro caterina
|
||||||
|
# Atmel DFU atmel-dfu
|
||||||
|
# LUFA DFU lufa-dfu
|
||||||
|
# QMK DFU qmk-dfu
|
||||||
|
# atmega32a bootloadHID
|
||||||
|
BOOTLOADER = caterina
|
||||||
|
|
||||||
|
# Boot Section Size in *bytes*
|
||||||
|
# OPT_DEFS += -DBOOTLOADER_SIZE=4096
|
||||||
|
|
||||||
|
|
||||||
|
# Build Options
|
||||||
|
# comment out to disable the options.
|
||||||
|
#
|
||||||
|
BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000)
|
||||||
|
MOUSEKEY_ENABLE = yes # Mouse keys(+4700)
|
||||||
|
EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
|
||||||
|
CONSOLE_ENABLE = no # Console for debug(+400)
|
||||||
|
COMMAND_ENABLE = no # Commands for debug and configuration
|
||||||
|
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
||||||
|
NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
|
||||||
|
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
|
||||||
|
AUDIO_ENABLE = no
|
||||||
|
RGBLIGHT_ENABLE = no
|
||||||
|
LAYOUTS = ortho_4x4
|
||||||
1
keyboards/handwired/tradestation/tradestation.c
Normal file
1
keyboards/handwired/tradestation/tradestation.c
Normal file
@@ -0,0 +1 @@
|
|||||||
|
#include "tradestation.h"
|
||||||
27
keyboards/handwired/tradestation/tradestation.h
Normal file
27
keyboards/handwired/tradestation/tradestation.h
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "quantum.h"
|
||||||
|
|
||||||
|
#define LAYOUT_ortho_4x4( \
|
||||||
|
K00, K01, K02, K03, \
|
||||||
|
K10, K11, K12, K13, \
|
||||||
|
K20, K21, K22, K23, \
|
||||||
|
K30, K31, K32, K33 \
|
||||||
|
) { \
|
||||||
|
{ K00, K01, K02, K03 }, \
|
||||||
|
{ K10, K11, K12, K13 }, \
|
||||||
|
{ K20, K21, K22, K23 }, \
|
||||||
|
{ K30, K31, K32, K33 } \
|
||||||
|
}
|
||||||
|
|
||||||
|
#define LAYOUT_tradestation( \
|
||||||
|
K00, K01, K02, K03, \
|
||||||
|
K10, K11, K12, K13, \
|
||||||
|
K20, K22, \
|
||||||
|
K30, K32 \
|
||||||
|
) { \
|
||||||
|
{ K00, K01, K02, K03 }, \
|
||||||
|
{ K10, K11, K12, K13 }, \
|
||||||
|
{ K20, KC_NO, K22, KC_NO }, \
|
||||||
|
{ K30, KC_NO, K32, KC_NO } \
|
||||||
|
}
|
||||||
@@ -89,9 +89,11 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|||||||
|
|
||||||
|
|
||||||
void matrix_init_keymap(void) {
|
void matrix_init_keymap(void) {
|
||||||
DDRD &= ~(1<<5);
|
#ifndef CONVERT_TO_PROTON_C
|
||||||
PORTD &= ~(1<<5);
|
setPinOutput(D5);
|
||||||
|
writePinHigh(D5);
|
||||||
|
|
||||||
DDRB &= ~(1<<0);
|
setPinOutput(B0);
|
||||||
PORTB &= ~(1<<0);
|
writePinHigh(B0);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,8 @@
|
|||||||
#include "../../config.h"
|
#pragma once
|
||||||
|
|
||||||
|
//Force NKRO to be enabled.
|
||||||
|
#define FORCE_NKRO
|
||||||
|
|
||||||
//GRAVE_ESC override for CTRL+SHIFT+ESC Windows task manager shortcut.
|
//GRAVE_ESC override for CTRL+SHIFT+ESC Windows task manager shortcut.
|
||||||
#define GRAVE_ESC_CTRL_OVERRIDE
|
#define GRAVE_ESC_CTRL_OVERRIDE
|
||||||
|
|
||||||
|
|||||||
@@ -11,13 +11,16 @@ enum layers {
|
|||||||
_AL, // Adjust Layer
|
_AL, // Adjust Layer
|
||||||
};
|
};
|
||||||
|
|
||||||
enum jc65_keycodes {
|
enum custom_keycodes {
|
||||||
DYNAMIC_MACRO_RANGE = SAFE_RANGE,
|
DYNAMIC_MACRO_RANGE = SAFE_RANGE,
|
||||||
|
QMK_REV,
|
||||||
|
KC_WEB,
|
||||||
|
KC_SP4
|
||||||
};
|
};
|
||||||
|
|
||||||
|
extern backlight_config_t backlight_config;
|
||||||
|
|
||||||
#include "dynamic_macro.h"
|
#include "dynamic_macro.h"
|
||||||
#define _______ KC_TRNS
|
|
||||||
#define XXXXXXX KC_NO
|
|
||||||
#define FN_CAPS LT(_FL, KC_CAPS)
|
#define FN_CAPS LT(_FL, KC_CAPS)
|
||||||
#define KC_DMR1 DYN_REC_START1
|
#define KC_DMR1 DYN_REC_START1
|
||||||
#define KC_DMR2 DYN_REC_START2
|
#define KC_DMR2 DYN_REC_START2
|
||||||
@@ -25,18 +28,16 @@ enum jc65_keycodes {
|
|||||||
#define KC_DMP2 DYN_MACRO_PLAY2
|
#define KC_DMP2 DYN_MACRO_PLAY2
|
||||||
#define KC_DMRS DYN_REC_STOP
|
#define KC_DMRS DYN_REC_STOP
|
||||||
|
|
||||||
static uint8_t current_layer;
|
|
||||||
|
|
||||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||||
/* _BL: Base Layer, mostly standard 65% QWERTY layout.
|
/*#### _BL: Base Layer - Mostly standard 65% QWERTY layout.
|
||||||
* .---------------------------------------------------------------.
|
* .---------------------------------------------------------------.
|
||||||
* |GrE| 1| 2| 3| 4| 5| 6| 7| 8| 9| 0| -| =|Backsp |Ins|
|
* |GrE|1 |2 |3 |4 |5 |6 |7 |8 |9 |0 |- |= |Backsp |Ins|
|
||||||
* |---------------------------------------------------------------|
|
* |---------------------------------------------------------------|
|
||||||
* |Tab | Q| W| E| R| T| Y| U| I| O| P| [| ]| \|Del|
|
* |Tab |Q |W |E |R |T |Y |U |I |O |P |[ |] |\ |Del|
|
||||||
* |---------------------------------------------------------------|
|
* |---------------------------------------------------------------|
|
||||||
* |FnCaps| A| S| D| F| G| H| J| K| L| ;| '|Return |PgU|
|
* |FnCaps|A |S |D |F |G |H |J |K |L |; |' |Return |PgU|
|
||||||
* |---------------------------------------------------------------|
|
* |---------------------------------------------------------------|
|
||||||
* |Shift | Z| X| C| V| B| N| M| ,| .| /|Shift |Up |PgD|
|
* |Shift |Z |X |C |V |B |N |M |, |. |/ |Shift |Up |PgD|
|
||||||
* |---------------------------------------------------------------|
|
* |---------------------------------------------------------------|
|
||||||
* |Ctrl|Gui |Alt | Space |RAlt |Ctrl |Lft|Dwn|Rgt|
|
* |Ctrl|Gui |Alt | Space |RAlt |Ctrl |Lft|Dwn|Rgt|
|
||||||
* *---------------------------------------------------------------*
|
* *---------------------------------------------------------------*
|
||||||
@@ -48,16 +49,15 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|||||||
KC_LSFT, XXXXXXX, 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_PGDN,
|
KC_LSFT, XXXXXXX, 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_PGDN,
|
||||||
KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_SPC, KC_SPC, KC_RALT, KC_RGUI, KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT
|
KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_SPC, KC_SPC, KC_RALT, KC_RGUI, KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT
|
||||||
),
|
),
|
||||||
|
/*#### _WL: Workman Layer.
|
||||||
/* _WL: Workman Layer.
|
|
||||||
* .---------------------------------------------------------------.
|
* .---------------------------------------------------------------.
|
||||||
* | | | | | | | | | | | | -| =| | |
|
* | | | | | | | | | | | |- |= | | |
|
||||||
* |---------------------------------------------------------------|
|
* |---------------------------------------------------------------|
|
||||||
* | | Q| D| R| W| B| J| F| U| P| ;| [| ]| \| |
|
* | |Q |D |R |W |B |J |F |U |P |; |[ |] |\ | |
|
||||||
* |---------------------------------------------------------------|
|
* |---------------------------------------------------------------|
|
||||||
* | | A| S| H| T| G| Y| N| E| O| I| '| | |
|
* | |A |S |H |T |G |Y |N |E |O |I |' | | |
|
||||||
* |---------------------------------------------------------------|
|
* |---------------------------------------------------------------|
|
||||||
* | | Z| X| M| C| V| K| L| ,| .| /| | | |
|
* | |Z |X |M |C |V |K |L |, |. |/ | | | |
|
||||||
* |---------------------------------------------------------------|
|
* |---------------------------------------------------------------|
|
||||||
* | | | | | | | | | |
|
* | | | | | | | | | |
|
||||||
* *---------------------------------------------------------------*
|
* *---------------------------------------------------------------*
|
||||||
@@ -69,16 +69,15 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|||||||
_______, _______, KC_Z , KC_X , KC_M , KC_C , KC_V , KC_K , KC_L , KC_COMM, KC_DOT , KC_SLSH, _______, _______, _______,
|
_______, _______, KC_Z , KC_X , KC_M , KC_C , KC_V , KC_K , KC_L , KC_COMM, KC_DOT , KC_SLSH, _______, _______, _______,
|
||||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
|
||||||
),
|
),
|
||||||
|
/*#### _NL: Norman Layer.
|
||||||
/* _NL: Norman Layer.
|
|
||||||
* .---------------------------------------------------------------.
|
* .---------------------------------------------------------------.
|
||||||
* | | | | | | | | | | | | -| =| | |
|
* | | | | | | | | | | | |- |= | | |
|
||||||
* |---------------------------------------------------------------|
|
* |---------------------------------------------------------------|
|
||||||
* | | Q| W| D| F| K| J| U| R| L| ;| [| ]| \| |
|
* | |Q |W |D |F |K |J |U |R |L |; |[ |] |\ | |
|
||||||
* |---------------------------------------------------------------|
|
* |---------------------------------------------------------------|
|
||||||
* | | A| S| E| T| G| Y| N| I| O| H| '| | |
|
* | |A |S |E |T |G |Y |N |I |O |H |' | | |
|
||||||
* |---------------------------------------------------------------|
|
* |---------------------------------------------------------------|
|
||||||
* | | Z| X| C| V| B| P| M| ,| .| /| | | |
|
* | |Z |X |C |V |B |P |M |, |. |/ | | | |
|
||||||
* |---------------------------------------------------------------|
|
* |---------------------------------------------------------------|
|
||||||
* | | | | | | | | | |
|
* | | | | | | | | | |
|
||||||
* *---------------------------------------------------------------*
|
* *---------------------------------------------------------------*
|
||||||
@@ -90,16 +89,15 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|||||||
_______, _______, KC_Z , KC_X , KC_C , KC_V , KC_B , KC_P , KC_M , KC_COMM, KC_DOT , KC_SLSH, _______, _______, _______,
|
_______, _______, KC_Z , KC_X , KC_C , KC_V , KC_B , KC_P , KC_M , KC_COMM, KC_DOT , KC_SLSH, _______, _______, _______,
|
||||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
|
||||||
),
|
),
|
||||||
|
/*#### _DL: Dvorak Layer.
|
||||||
/* _DL: Dvorak Layer.
|
|
||||||
* .---------------------------------------------------------------.
|
* .---------------------------------------------------------------.
|
||||||
* | | | | | | | | | | | | [| ]| | |
|
* | | | | | | | | | | | |[ |] | | |
|
||||||
* |---------------------------------------------------------------|
|
* |---------------------------------------------------------------|
|
||||||
* | | '| ,| .| P| Y| F| G| C| R| L| /| =| \| |
|
* | |' |, |. |P |Y |F |G |C |R |L |/ |= |\ | |
|
||||||
* |---------------------------------------------------------------|
|
* |---------------------------------------------------------------|
|
||||||
* | | A| O| E| U| I| D| H| T| N| S| -| | |
|
* | |A |O |E |U |I |D |H |T |N |S |- | | |
|
||||||
* |---------------------------------------------------------------|
|
* |---------------------------------------------------------------|
|
||||||
* | | ;| Q| J| K| X| B| M| W| V| Z| | | |
|
* | |; |Q |J |K |X |B |M |W |V |Z | | | |
|
||||||
* |---------------------------------------------------------------|
|
* |---------------------------------------------------------------|
|
||||||
* | | | | | | | | | |
|
* | | | | | | | | | |
|
||||||
* *---------------------------------------------------------------*
|
* *---------------------------------------------------------------*
|
||||||
@@ -111,16 +109,15 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|||||||
_______, _______, KC_SCLN, KC_Q , KC_J , KC_K , KC_X , KC_B , KC_M , KC_W , KC_V , KC_Z , _______, _______, _______,
|
_______, _______, KC_SCLN, KC_Q , KC_J , KC_K , KC_X , KC_B , KC_M , KC_W , KC_V , KC_Z , _______, _______, _______,
|
||||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
|
||||||
),
|
),
|
||||||
|
/*#### _CL: Colmak Layer.
|
||||||
/* _CL: Colmak Layer.
|
|
||||||
* .---------------------------------------------------------------.
|
* .---------------------------------------------------------------.
|
||||||
* | | | | | | | | | | | | -| =| | |
|
* | | | | | | | | | | | |- |= | | |
|
||||||
* |---------------------------------------------------------------|
|
* |---------------------------------------------------------------|
|
||||||
* | | Q| W| F| P| G| J| L| U| Y| ;| [| ]| \| |
|
* | |Q |W |F |P |G |J |L |U |Y |; |[ |] |\ | |
|
||||||
* |---------------------------------------------------------------|
|
* |---------------------------------------------------------------|
|
||||||
* | | A| R| S| T| D| H| N| E| I| O| '| | |
|
* | |A |R |S |T |D |H |N |E |I |O |' | | |
|
||||||
* |---------------------------------------------------------------|
|
* |---------------------------------------------------------------|
|
||||||
* | | Z| X| C| V| B| K| M| ,| .| /| | | |
|
* | |Z |X |C |V |B |K |M |, |. |/ | | | |
|
||||||
* |---------------------------------------------------------------|
|
* |---------------------------------------------------------------|
|
||||||
* | | | | | | | | | |
|
* | | | | | | | | | |
|
||||||
* *---------------------------------------------------------------*
|
* *---------------------------------------------------------------*
|
||||||
@@ -132,11 +129,9 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|||||||
_______, _______, KC_Z , KC_X , KC_C , KC_V , KC_B , KC_K , KC_M , KC_COMM, KC_DOT , KC_SLSH, _______, _______, _______,
|
_______, _______, KC_Z , KC_X , KC_C , KC_V , KC_B , KC_K , KC_M , KC_COMM, KC_DOT , KC_SLSH, _______, _______, _______,
|
||||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
|
||||||
),
|
),
|
||||||
|
/*#### _FL: Function Layer.
|
||||||
/* _FL: Function Layer.
|
|
||||||
* M0 opens Chrome
|
|
||||||
* .---------------------------------------------------------------.
|
* .---------------------------------------------------------------.
|
||||||
* |M0 | F1| F2| F3| F4| F5| F6| F7| F8| F9|F10|F11|F12|SLock |PSc|
|
* |Web|F1 |F2 |F3 |F4 |F5 |F6 |F7 |F8 |F9 |F10|F11|F12|SLock |PSc|
|
||||||
* |---------------------------------------------------------------|
|
* |---------------------------------------------------------------|
|
||||||
* |Fn_AL| | | | | | | | | | | | | |Pau|
|
* |Fn_AL| | | | | | | | | | | | | |Pau|
|
||||||
* |---------------------------------------------------------------|
|
* |---------------------------------------------------------------|
|
||||||
@@ -144,21 +139,19 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|||||||
* |---------------------------------------------------------------|
|
* |---------------------------------------------------------------|
|
||||||
* | | | | | | | | | | | |VlMute|VlU|End|
|
* | | | | | | | | | | | |VlMute|VlU|End|
|
||||||
* |---------------------------------------------------------------|
|
* |---------------------------------------------------------------|
|
||||||
* | | |Menu| | | |WBk|VlD|WFw|
|
* | | |Menu| SP4 | | |WBk|VlD|WFw|
|
||||||
* *---------------------------------------------------------------*
|
* *---------------------------------------------------------------*
|
||||||
*/
|
*/
|
||||||
[_FL] = LAYOUT(
|
[_FL] = LAYOUT(
|
||||||
M(0), KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, XXXXXXX, KC_SLCK, KC_PSCR,
|
KC_WEB, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, XXXXXXX, KC_SLCK, KC_PSCR,
|
||||||
MO(_AL), XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_PAUS,
|
MO(_AL), XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_PAUS,
|
||||||
_______, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT, XXXXXXX, XXXXXXX, XXXXXXX, KC_HOME,
|
_______, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT, XXXXXXX, XXXXXXX, XXXXXXX, KC_HOME,
|
||||||
XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_MUTE, KC_VOLU, KC_END,
|
XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_MUTE, KC_VOLU, KC_END,
|
||||||
XXXXXXX, XXXXXXX, KC_MENU, M(1), M(1), M(1), XXXXXXX, XXXXXXX, XXXXXXX, KC_WBAK, KC_VOLD, KC_WFWD
|
XXXXXXX, XXXXXXX, KC_MENU, KC_SP4, KC_SP4, KC_SP4, XXXXXXX, XXXXXXX, XXXXXXX, KC_WBAK, KC_VOLD, KC_WFWD
|
||||||
),
|
),
|
||||||
|
/*#### _AL: Adjust Layer - Keymap select, RGB Underglow, LED backlight, and Dynamic Macro settings.
|
||||||
/* _AL: Adjust Layer.
|
|
||||||
* Default keymap, RGB Underglow, LED backlight, and Dynamic Macro settings.
|
|
||||||
* .---------------------------------------------------------------.
|
* .---------------------------------------------------------------.
|
||||||
* |Ver|Tog|Mod|H- |H+ |S- |S+ |V- |V+ | |BLT|BL-|BL+| |MP1|
|
* |Rev|Tog|Mod|H- |H+ |S- |S+ |V- |V+ | |BLT|BL-|BL+| |MP1|
|
||||||
* |---------------------------------------------------------------|
|
* |---------------------------------------------------------------|
|
||||||
* |Fn_AL|_BL|_WL| | | | | | | | | | | |MR1|
|
* |Fn_AL|_BL|_WL| | | | | | | | | | | |MR1|
|
||||||
* |---------------------------------------------------------------|
|
* |---------------------------------------------------------------|
|
||||||
@@ -170,7 +163,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|||||||
* *---------------------------------------------------------------*
|
* *---------------------------------------------------------------*
|
||||||
*/
|
*/
|
||||||
[_AL] = LAYOUT(
|
[_AL] = LAYOUT(
|
||||||
F(0), RGB_TOG, RGB_MOD, RGB_HUD, RGB_HUI, RGB_SAD, RGB_SAI, RGB_VAD, RGB_VAI, XXXXXXX, BL_TOGG, BL_DEC, BL_INC, XXXXXXX, XXXXXXX, KC_DMP1,
|
QMK_REV, RGB_TOG, RGB_MOD, RGB_HUD, RGB_HUI, RGB_SAD, RGB_SAI, RGB_VAD, RGB_VAI, XXXXXXX, BL_TOGG, BL_DEC, BL_INC, XXXXXXX, XXXXXXX, KC_DMP1,
|
||||||
_______, DF(_BL), DF(_WL), XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_DMR1,
|
_______, DF(_BL), DF(_WL), XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_DMR1,
|
||||||
_______, XXXXXXX, XXXXXXX, DF(_DL), XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_DMRS,
|
_______, XXXXXXX, XXXXXXX, DF(_DL), XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_DMRS,
|
||||||
XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, DF(_CL), XXXXXXX, DF(_BL), DF(_NL), XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_DMR2,
|
XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, DF(_CL), XXXXXXX, DF(_BL), DF(_NL), XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_DMR2,
|
||||||
@@ -178,102 +171,96 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|||||||
),
|
),
|
||||||
};
|
};
|
||||||
|
|
||||||
const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) {
|
|
||||||
switch(id) {
|
|
||||||
case 0:
|
|
||||||
if (record->event.pressed) {
|
|
||||||
return MACRO(I(0), D(LGUI), T(R), U(LGUI), END);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
SEND_STRING("chrome.exe https://geekhack.org/index.php?topic=86756.new;topicseen#new\n");
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case 1:
|
|
||||||
if (record->event.pressed) {
|
|
||||||
return MACRO(I(0), T(SPC), T(SPC), T(SPC), T(SPC), END);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
return MACRO_NONE;
|
|
||||||
};
|
|
||||||
|
|
||||||
const uint16_t PROGMEM fn_actions[] = {
|
|
||||||
[0] = ACTION_FUNCTION(0),
|
|
||||||
};
|
|
||||||
|
|
||||||
void action_function(keyrecord_t *record, uint8_t id, uint8_t opt) {
|
|
||||||
switch (id) {
|
|
||||||
case 0:
|
|
||||||
if (record->event.pressed) {
|
|
||||||
SEND_STRING ("[QMK:" QMK_KEYBOARD ":" QMK_KEYMAP ":" QMK_VERSION "]");
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void matrix_init_user(void) {
|
|
||||||
#ifdef BACKLIGHT_ENABLE
|
|
||||||
backlight_level(0);
|
|
||||||
#endif
|
|
||||||
#ifdef RGBLIGHT_ENABLE
|
|
||||||
rgblight_mode(1);
|
|
||||||
rgblight_sethsv(180,100,100);
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
// Runs constantly in the background, in a loop.
|
|
||||||
void matrix_scan_user(void) {
|
|
||||||
uint8_t layer = biton32(layer_state);
|
|
||||||
|
|
||||||
if (current_layer == layer) {
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
current_layer = layer;
|
|
||||||
switch (layer) {
|
|
||||||
case 0:
|
|
||||||
backlight_level(0);
|
|
||||||
rgblight_sethsv(180,100,255);
|
|
||||||
break;
|
|
||||||
case 1:
|
|
||||||
backlight_level(1);
|
|
||||||
rgblight_sethsv(180,95,240);
|
|
||||||
break;
|
|
||||||
case 2:
|
|
||||||
backlight_level(1);
|
|
||||||
rgblight_sethsv(180,90,225);
|
|
||||||
break;
|
|
||||||
case 3:
|
|
||||||
backlight_level(1);
|
|
||||||
rgblight_sethsv(180,85,210);
|
|
||||||
break;
|
|
||||||
case 4:
|
|
||||||
backlight_level(1);
|
|
||||||
rgblight_sethsv(180,80,195);
|
|
||||||
break;
|
|
||||||
case 5:
|
|
||||||
backlight_level(2);
|
|
||||||
rgblight_sethsv(230,255,255);
|
|
||||||
break;
|
|
||||||
case 6:
|
|
||||||
backlight_level(3);
|
|
||||||
rgblight_sethsv(350,255,255);
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
backlight_level(0);
|
|
||||||
rgblight_sethsv(180,100,100);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
||||||
// Enable Dynamic Macros.
|
switch (keycode) {
|
||||||
|
case QMK_REV:
|
||||||
|
if (record->event.pressed) {
|
||||||
|
SEND_STRING(QMK_KEYBOARD "/" QMK_KEYMAP "@" QMK_VERSION ":" QMK_BUILDDATE);
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
break;
|
||||||
|
case KC_WEB:
|
||||||
|
if (record->event.pressed) {
|
||||||
|
SEND_STRING(SS_LGUI("r"));
|
||||||
|
wait_ms(100);
|
||||||
|
SEND_STRING("chrome.exe https://geekhack.org/index.php?topic=86756.new;topicseen#new\n");
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
break;
|
||||||
|
case KC_SP4:
|
||||||
|
if (record->event.pressed) {
|
||||||
|
SEND_STRING (" ");
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
// Dynamic Macros.
|
||||||
if (!process_record_dynamic_macro(keycode, record)) {
|
if (!process_record_dynamic_macro(keycode, record)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void custom_backlight_level(uint8_t level) {
|
||||||
|
if (level > BACKLIGHT_LEVELS)
|
||||||
|
level = BACKLIGHT_LEVELS;
|
||||||
|
backlight_config.level = level;
|
||||||
|
backlight_config.enable = !!backlight_config.level;
|
||||||
|
backlight_set(backlight_config.level);
|
||||||
|
}
|
||||||
|
|
||||||
|
void matrix_init_user(void) {
|
||||||
|
#ifdef BACKLIGHT_ENABLE
|
||||||
|
custom_backlight_level(0);
|
||||||
|
#endif
|
||||||
|
#ifdef RGBLIGHT_ENABLE
|
||||||
|
rgblight_mode(1);
|
||||||
|
rgblight_sethsv_noeeprom(180,100,100);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
void matrix_scan_user(void) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
uint32_t layer_state_set_user(uint32_t state) {
|
||||||
|
switch (biton32(state)) {
|
||||||
|
case _BL:
|
||||||
|
custom_backlight_level(0);
|
||||||
|
rgblight_sethsv_noeeprom(180,100,255);
|
||||||
|
break;
|
||||||
|
case _WL:
|
||||||
|
custom_backlight_level(1);
|
||||||
|
rgblight_sethsv_noeeprom(180,95,240);
|
||||||
|
break;
|
||||||
|
case _NL:
|
||||||
|
custom_backlight_level(1);
|
||||||
|
rgblight_sethsv_noeeprom(180,90,225);
|
||||||
|
break;
|
||||||
|
case _DL:
|
||||||
|
custom_backlight_level(1);
|
||||||
|
rgblight_sethsv_noeeprom(180,85,210);
|
||||||
|
break;
|
||||||
|
case _CL:
|
||||||
|
custom_backlight_level(1);
|
||||||
|
rgblight_sethsv_noeeprom(180,80,195);
|
||||||
|
break;
|
||||||
|
case _FL:
|
||||||
|
custom_backlight_level(2);
|
||||||
|
rgblight_sethsv_noeeprom(230,255,255);
|
||||||
|
break;
|
||||||
|
case _AL:
|
||||||
|
custom_backlight_level(3);
|
||||||
|
rgblight_sethsv_noeeprom(350,255,255);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
custom_backlight_level(0);
|
||||||
|
rgblight_sethsv_noeeprom(180,100,100);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
return state;
|
||||||
|
}
|
||||||
|
|
||||||
|
void led_set_user(uint8_t usb_led) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|||||||
@@ -13,76 +13,74 @@ make jc65/v32u4:gam3cat
|
|||||||
(Caps+TAB+( )): (Q)WERTY, (W)orkman, (N)orman, (D)vorak, (C)olmak
|
(Caps+TAB+( )): (Q)WERTY, (W)orkman, (N)orman, (D)vorak, (C)olmak
|
||||||
|
|
||||||
### Base Layer Options:
|
### Base Layer Options:
|
||||||
#### _BL: Base Layer, mostly standard 65% QWERTY layout.
|
#### _BL: Base Layer - Mostly standard 65% QWERTY layout.
|
||||||
.---------------------------------------------------------------.
|
.---------------------------------------------------------------.
|
||||||
|GrE| 1| 2| 3| 4| 5| 6| 7| 8| 9| 0| -| =|Backsp |Ins|
|
|GrE|1 |2 |3 |4 |5 |6 |7 |8 |9 |0 |- |= |Backsp |Ins|
|
||||||
|---------------------------------------------------------------|
|
|---------------------------------------------------------------|
|
||||||
|Tab | Q| W| E| R| T| Y| U| I| O| P| [| ]| \|Del|
|
|Tab |Q |W |E |R |T |Y |U |I |O |P |[ |] |\ |Del|
|
||||||
|---------------------------------------------------------------|
|
|---------------------------------------------------------------|
|
||||||
|FnCaps| A| S| D| F| G| H| J| K| L| ;| '|Return |PgU|
|
|FnCaps|A |S |D |F |G |H |J |K |L |; |' |Return |PgU|
|
||||||
|---------------------------------------------------------------|
|
|---------------------------------------------------------------|
|
||||||
|Shift | Z| X| C| V| B| N| M| ,| .| /|Shift |Up |PgD|
|
|Shift |Z |X |C |V |B |N |M |, |. |/ |Shift |Up |PgD|
|
||||||
|---------------------------------------------------------------|
|
|---------------------------------------------------------------|
|
||||||
|Ctrl|Gui |Alt | Space |RAlt |Ctrl |Lft|Dwn|Rgt|
|
|Ctrl|Gui |Alt | Space |RAlt |Ctrl |Lft|Dwn|Rgt|
|
||||||
*---------------------------------------------------------------*
|
*---------------------------------------------------------------*
|
||||||
|
|
||||||
#### _WL: Workman Layer.
|
#### _WL: Workman Layer.
|
||||||
.---------------------------------------------------------------.
|
.---------------------------------------------------------------.
|
||||||
| | | | | | | | | | | | -| =| | |
|
| | | | | | | | | | | |- |= | | |
|
||||||
|---------------------------------------------------------------|
|
|---------------------------------------------------------------|
|
||||||
| | Q| D| R| W| B| J| F| U| P| ;| [| ]| \| |
|
| |Q |D |R |W |B |J |F |U |P |; |[ |] |\ | |
|
||||||
|---------------------------------------------------------------|
|
|---------------------------------------------------------------|
|
||||||
| | A| S| H| T| G| Y| N| E| O| I| '| | |
|
| |A |S |H |T |G |Y |N |E |O |I |' | | |
|
||||||
|---------------------------------------------------------------|
|
|---------------------------------------------------------------|
|
||||||
| | Z| X| M| C| V| K| L| ,| .| /| | | |
|
| |Z |X |M |C |V |K |L |, |. |/ | | | |
|
||||||
|---------------------------------------------------------------|
|
|---------------------------------------------------------------|
|
||||||
| | | | | | | | | |
|
| | | | | | | | | |
|
||||||
*---------------------------------------------------------------*
|
*---------------------------------------------------------------*
|
||||||
|
|
||||||
#### _NL: Norman Layer.
|
#### _NL: Norman Layer.
|
||||||
.---------------------------------------------------------------.
|
.---------------------------------------------------------------.
|
||||||
| | | | | | | | | | | | -| =| | |
|
| | | | | | | | | | | |- |= | | |
|
||||||
|---------------------------------------------------------------|
|
|---------------------------------------------------------------|
|
||||||
| | Q| W| D| F| K| J| U| R| L| ;| [| ]| \| |
|
| |Q |W |D |F |K |J |U |R |L |; |[ |] |\ | |
|
||||||
|---------------------------------------------------------------|
|
|---------------------------------------------------------------|
|
||||||
| | A| S| E| T| G| Y| N| I| O| H| '| | |
|
| |A |S |E |T |G |Y |N |I |O |H |' | | |
|
||||||
|---------------------------------------------------------------|
|
|---------------------------------------------------------------|
|
||||||
| | Z| X| C| V| B| P| M| ,| .| /| | | |
|
| |Z |X |C |V |B |P |M |, |. |/ | | | |
|
||||||
|---------------------------------------------------------------|
|
|---------------------------------------------------------------|
|
||||||
| | | | | | | | | |
|
| | | | | | | | | |
|
||||||
*---------------------------------------------------------------*
|
*---------------------------------------------------------------*
|
||||||
|
|
||||||
#### _DL: Dvorak Layer.
|
#### _DL: Dvorak Layer.
|
||||||
.---------------------------------------------------------------.
|
.---------------------------------------------------------------.
|
||||||
| | | | | | | | | | | | [| ]| | |
|
| | | | | | | | | | | |[ |] | | |
|
||||||
|---------------------------------------------------------------|
|
|---------------------------------------------------------------|
|
||||||
| | '| ,| .| P| Y| F| G| C| R| L| /| =| \| |
|
| |' |, |. |P |Y |F |G |C |R |L |/ |= |\ | |
|
||||||
|---------------------------------------------------------------|
|
|---------------------------------------------------------------|
|
||||||
| | A| O| E| U| I| D| H| T| N| S| -| | |
|
| |A |O |E |U |I |D |H |T |N |S |- | | |
|
||||||
|---------------------------------------------------------------|
|
|---------------------------------------------------------------|
|
||||||
| | ;| Q| J| K| X| B| M| W| V| Z| | | |
|
| |; |Q |J |K |X |B |M |W |V |Z | | | |
|
||||||
|---------------------------------------------------------------|
|
|---------------------------------------------------------------|
|
||||||
| | | | | | | | | |
|
| | | | | | | | | |
|
||||||
*---------------------------------------------------------------*
|
*---------------------------------------------------------------*
|
||||||
|
|
||||||
#### _CL: Colmak Layer.
|
#### _CL: Colmak Layer.
|
||||||
.---------------------------------------------------------------.
|
.---------------------------------------------------------------.
|
||||||
| | | | | | | | | | | | -| =| | |
|
| | | | | | | | | | | |- |= | | |
|
||||||
|---------------------------------------------------------------|
|
|---------------------------------------------------------------|
|
||||||
| | Q| W| F| P| G| J| L| U| Y| ;| [| ]| \| |
|
| |Q |W |F |P |G |J |L |U |Y |; |[ |] |\ | |
|
||||||
|---------------------------------------------------------------|
|
|---------------------------------------------------------------|
|
||||||
| | A| R| S| T| D| H| N| E| I| O| '| | |
|
| |A |R |S |T |D |H |N |E |I |O |' | | |
|
||||||
|---------------------------------------------------------------|
|
|---------------------------------------------------------------|
|
||||||
| | Z| X| C| V| B| K| M| ,| .| /| | | |
|
| |Z |X |C |V |B |K |M |, |. |/ | | | |
|
||||||
|---------------------------------------------------------------|
|
|---------------------------------------------------------------|
|
||||||
| | | | | | | | | |
|
| | | | | | | | | |
|
||||||
*---------------------------------------------------------------*
|
*---------------------------------------------------------------*
|
||||||
|
|
||||||
### Function Layer: (hold Caps to access)
|
|
||||||
M0 opens Chrome
|
|
||||||
#### _FL: Function Layer.
|
#### _FL: Function Layer.
|
||||||
.---------------------------------------------------------------.
|
.---------------------------------------------------------------.
|
||||||
|M0 | F1| F2| F3| F4| F5| F6| F7| F8| F9|F10|F11|F12|SLock |PSc|
|
|Web|F1 |F2 |F3 |F4 |F5 |F6 |F7 |F8 |F9 |F10|F11|F12|SLock |PSc|
|
||||||
|---------------------------------------------------------------|
|
|---------------------------------------------------------------|
|
||||||
|Fn_AL| | | | | | | | | | | | | |Pau|
|
|Fn_AL| | | | | | | | | | | | | |Pau|
|
||||||
|---------------------------------------------------------------|
|
|---------------------------------------------------------------|
|
||||||
@@ -90,14 +88,12 @@ make jc65/v32u4:gam3cat
|
|||||||
|---------------------------------------------------------------|
|
|---------------------------------------------------------------|
|
||||||
| | | | | | | | | | | |VlMute|VlU|End|
|
| | | | | | | | | | | |VlMute|VlU|End|
|
||||||
|---------------------------------------------------------------|
|
|---------------------------------------------------------------|
|
||||||
| | |Menu| | | |WBk|VlD|WFw|
|
| | |Menu| SP4 | | |WBk|VlD|WFw|
|
||||||
*---------------------------------------------------------------*
|
*---------------------------------------------------------------*
|
||||||
|
|
||||||
### Adjust Layer: (hold Caps+TAB to access)
|
#### _AL: Adjust Layer - Keymap select, RGB Underglow, LED backlight, and Dynamic Macro settings.
|
||||||
Default keymap, RGB Underglow, LED backlight, and Dynamic Macro settings.
|
|
||||||
#### _AL: Adjust Layer.
|
|
||||||
.---------------------------------------------------------------.
|
.---------------------------------------------------------------.
|
||||||
|Ver|Tog|Mod|H- |H+ |S- |S+ |V- |V+ | |BLT|BL-|BL+| |MP1|
|
|Rev|Tog|Mod|H- |H+ |S- |S+ |V- |V+ | |BLT|BL-|BL+| |MP1|
|
||||||
|---------------------------------------------------------------|
|
|---------------------------------------------------------------|
|
||||||
|Fn_AL|_BL|_WL| | | | | | | | | | | |MR1|
|
|Fn_AL|_BL|_WL| | | | | | | | | | | |MR1|
|
||||||
|---------------------------------------------------------------|
|
|---------------------------------------------------------------|
|
||||||
|
|||||||
@@ -1,6 +1,24 @@
|
|||||||
ifndef QUANTUM_DIR
|
# Build Options
|
||||||
include ../../../../Makefile
|
# change to "no" to disable the options, or define them in the Makefile in
|
||||||
endif
|
# the appropriate keymap folder that will get included automatically
|
||||||
|
#
|
||||||
BACKLIGHT_ENABLE=yes
|
TAP_DANCE_ENABLE = no # Enable TapDance functionality
|
||||||
//TAP_DANCE_ENABLE=yes
|
RGBLIGHT_ENABLE = yes # Enable WS2812 RGB underlight.
|
||||||
|
BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000)
|
||||||
|
MOUSEKEY_ENABLE = no # Mouse keys(+1500)
|
||||||
|
EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
|
||||||
|
CONSOLE_ENABLE = no # Console for debug(+400)
|
||||||
|
COMMAND_ENABLE = no # Commands for debug and configuration
|
||||||
|
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
||||||
|
NKRO_ENABLE = yes # Nkey Rollover - If this doesn't work, add this to config.h: #define FORCE_NKRO
|
||||||
|
BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality
|
||||||
|
MIDI_ENABLE = no # MIDI controls
|
||||||
|
UNICODE_ENABLE = no # Unicode
|
||||||
|
UNICODEMAP_ENABLE = no # Enable extended unicode
|
||||||
|
BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
|
||||||
|
AUDIO_ENABLE = no # Audio output on port C6
|
||||||
|
FAUXCLICKY_ENABLE = no # Uses buzzer to emulate clicky switches. By default, uses the C6 pin, same as AUDIO_ENABLE.
|
||||||
|
#VARIABLE_TRACE = no # Use this to debug changes to variable values
|
||||||
|
API_SYSEX_ENABLE = no # This enables using the Quantum SYSEX API to send strings(+5390)
|
||||||
|
KEY_LOCK_ENABLE = no # This enables key lock(+260)
|
||||||
|
SPLIT_KEYBOARD = no # This enables split keyboard support and includes all necessary files located at quantum/split_common
|
||||||
|
|||||||
@@ -40,7 +40,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|||||||
KC_ESC, DE_Q, DE_W, DE_E, DE_R, DE_T, DE_Z, DE_U, DE_I, DE_O, DE_P, KC_BSPC, \
|
KC_ESC, DE_Q, DE_W, DE_E, DE_R, DE_T, DE_Z, DE_U, DE_I, DE_O, DE_P, KC_BSPC, \
|
||||||
KC_TAB, DE_A, DE_S, DE_D, DE_F, DE_G, DE_H, DE_J, DE_K, DE_L, DE_PLUS, DE_HASH, \
|
KC_TAB, DE_A, DE_S, DE_D, DE_F, DE_G, DE_H, DE_J, DE_K, DE_L, DE_PLUS, DE_HASH, \
|
||||||
KC_LSFT, DE_Y, DE_X, DE_C, DE_V, DE_B, DE_N, DE_M, DE_COMM, DE_DOT, DE_MINS, KC_ENT , \
|
KC_LSFT, DE_Y, DE_X, DE_C, DE_V, DE_B, DE_N, DE_M, DE_COMM, DE_DOT, DE_MINS, KC_ENT , \
|
||||||
KC_LCTL, KC_LALT, DE_ALGR, KC_LGUI, LOWER, KC_SPC, KC_SPC, RAISE, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT \
|
KC_LCTL, KC_LALT, KC_ALGR, KC_LGUI, LOWER, KC_SPC, KC_SPC, RAISE, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT \
|
||||||
),
|
),
|
||||||
|
|
||||||
/* Lower
|
/* Lower
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
#include "m10a.h"
|
#include QMK_KEYBOARD_H
|
||||||
#include "action_layer.h"
|
|
||||||
#include "eeconfig.h"
|
|
||||||
#include "version.h"
|
#include "version.h"
|
||||||
|
|
||||||
extern keymap_config_t keymap_config;
|
extern keymap_config_t keymap_config;
|
||||||
@@ -18,46 +16,48 @@ enum layers {
|
|||||||
_L9
|
_L9
|
||||||
};
|
};
|
||||||
|
|
||||||
enum m10a_keycodes {
|
enum custom_keycodes {
|
||||||
DYNAMIC_MACRO_RANGE = SAFE_RANGE,
|
DYNAMIC_MACRO_RANGE = SAFE_RANGE,
|
||||||
|
QMK_REV,
|
||||||
|
KC_WEB,
|
||||||
|
KC_WCLS
|
||||||
};
|
};
|
||||||
|
|
||||||
|
extern backlight_config_t backlight_config;
|
||||||
|
|
||||||
#include "dynamic_macro.h"
|
#include "dynamic_macro.h"
|
||||||
#define _______ KC_TRNS
|
#define FN_ZERO LT(_L9, KC_KP_0)
|
||||||
#define XXXXXXX KC_NO
|
|
||||||
#define FN_ZERO LT(_L9, KC_0)
|
|
||||||
#define KC_DMR1 DYN_REC_START1
|
#define KC_DMR1 DYN_REC_START1
|
||||||
#define KC_DMR2 DYN_REC_START2
|
#define KC_DMR2 DYN_REC_START2
|
||||||
#define KC_DMP1 DYN_MACRO_PLAY1
|
#define KC_DMP1 DYN_MACRO_PLAY1
|
||||||
#define KC_DMP2 DYN_MACRO_PLAY2
|
#define KC_DMP2 DYN_MACRO_PLAY2
|
||||||
#define KC_DMRS DYN_REC_STOP
|
#define KC_DMRS DYN_REC_STOP
|
||||||
|
|
||||||
static uint8_t current_layer;
|
|
||||||
|
|
||||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||||
/* .-----------. .-----------. .-----------. .-----------. .-----------.
|
/*## Layout Config:
|
||||||
* | 7| 8| 9| | +| -| *| | ^| &| !| |VLU|Ver|WFD| |VLU|NXT|FFD|
|
* .-----------. .-----------. .-----------. .-----------. .-----------.
|
||||||
* |-----------| |-----------| |-----------| |-----------| |-----------|
|
* |7 |8 |9 | |+ |- |* | |^ |& |! | |VLU|Ver|WFD| |VLU|NXT|FFD|
|
||||||
* | 4| 5| 6| | /| %| ,| | D| E| F| |MUT|C-W|CHR| |MUT|STP|PLY|
|
* |-----------| |-----------| |-----------| |-----------| |-----------|
|
||||||
* |-----------| |-----------| |-----------| |-----------| |-----------|
|
* |4 |5 |6 | |/ |% |, | |D |E |F | |MUT|C-W|CHR| |MUT|STP|PLY|
|
||||||
* | 1| 2| 3| | .| =|Ent| | A| B| C| |VLD|CMP|WBK| |VLD|PRV|RWD|
|
* |-----------| |-----------| |-----------| |-----------| |-----------|
|
||||||
* |-----------| |-----------| |-----------| |-----------| |-----------|
|
* |1 |2 |3 | |. |= |Ent| |A |B |C | |VLD|CMP|WBK| |VLD|PRV|RWD|
|
||||||
* |L0 | _L9/0| |L1 | _L9 | |L2 | _L9 | |L3 | _L9 | |L4 | _L9 |
|
* |-----------| |-----------| |-----------| |-----------| |-----------|
|
||||||
* *-----------* *-----------* *-----------* *-----------* *-----------*
|
* |#L0|_L9/0 | |#L1|_L9 | |#L2|_L9 | |#L3|_L9 | |#L4|_L9 |
|
||||||
* .-----------. .-----------. .-----------. .-----------. .-----------.
|
* *-----------* *-----------* *-----------* *-----------* *-----------*
|
||||||
* | | | | | | | | |MP1| |MP2| | | |RST| |_L6|_L7|_L8|
|
* .-----------. .-----------. .-----------. .-----------. .-----------.
|
||||||
* |-----------| |-----------| |-----------| |-----------| |-----------|
|
* | | | | | | | | |MP1| |MP2| | | |RST| |_L6|_L7|_L8|
|
||||||
* | | | | | | | | | |MRS| | | | | | |_L3|_L4|_L5|
|
* |-----------| |-----------| |-----------| |-----------| |-----------|
|
||||||
* |-----------| |-----------| |-----------| |-----------| |-----------|
|
* | | | | | | | | | |MRS| | | | | | |_L3|_L4|_L5|
|
||||||
* | | | | | | | | |MR1| |MR2| | | | | |_L0|_L1|_L2|
|
* |-----------| |-----------| |-----------| |-----------| |-----------|
|
||||||
* |-----------| |-----------| |-----------| |-----------| |-----------|
|
* | | | | | | | | |MR1| |MR2| | | | | |_L0|_L1|_L2|
|
||||||
* |L5 | _L9 | |L6 | _L9 | |L7 | _L9 | |L8 | _L9 | |L9 | |
|
* |-----------| |-----------| |-----------| |-----------| |-----------|
|
||||||
* *-----------* *-----------* *-----------* *-----------* *-----------*
|
* |#L5|_L9 | |#L6|_L9 | |#L7|_L9 | |#L8|_L9 | |#L9| |
|
||||||
|
* *-----------* *-----------* *-----------* *-----------* *-----------*
|
||||||
*/
|
*/
|
||||||
[_L0] = {{KC_7, KC_8, KC_9 }, {KC_4, KC_5, KC_6 }, {KC_1, KC_2, KC_3 }, {XXXXXXX, XXXXXXX, FN_ZERO}},
|
[_L0] = {{KC_KP_7, KC_KP_8, KC_KP_9}, {KC_KP_4, KC_KP_5, KC_KP_6}, {KC_KP_1, KC_KP_2, KC_KP_3}, {XXXXXXX, XXXXXXX, FN_ZERO}},
|
||||||
[_L1] = {{KC_PPLS, KC_PMNS, KC_PAST}, {KC_PSLS, KC_PERC, KC_COMM}, {KC_PDOT, KC_EQL, KC_PENT}, {XXXXXXX, XXXXXXX, MO(_L9)}},
|
[_L1] = {{KC_PPLS, KC_PMNS, KC_PAST}, {KC_PSLS, KC_PERC, KC_COMM}, {KC_PDOT, KC_EQL, KC_PENT}, {XXXXXXX, XXXXXXX, MO(_L9)}},
|
||||||
[_L2] = {{KC_CIRC, KC_AMPR, KC_EXLM}, {S(KC_D), S(KC_E), S(KC_F)}, {S(KC_A), S(KC_B), S(KC_C)}, {XXXXXXX, XXXXXXX, MO(_L9)}},
|
[_L2] = {{KC_CIRC, KC_AMPR, KC_EXLM}, {S(KC_D), S(KC_E), S(KC_F)}, {S(KC_A), S(KC_B), S(KC_C)}, {XXXXXXX, XXXXXXX, MO(_L9)}},
|
||||||
[_L3] = {{KC_VOLU, F(0), KC_WFWD}, {KC_MUTE, M(1), M(0) }, {KC_VOLD, KC_MYCM, KC_WBAK}, {XXXXXXX, XXXXXXX, MO(_L9)}},
|
[_L3] = {{KC_VOLU, QMK_REV, KC_WFWD}, {KC_MUTE, KC_WCLS, KC_WEB }, {KC_VOLD, KC_MYCM, KC_WBAK}, {XXXXXXX, XXXXXXX, MO(_L9)}},
|
||||||
[_L4] = {{KC_VOLU, KC_MNXT, KC_MFFD}, {KC_MUTE, KC_MSTP, KC_MPLY}, {KC_VOLD, KC_MPRV, KC_MRWD}, {XXXXXXX, XXXXXXX, MO(_L9)}},
|
[_L4] = {{KC_VOLU, KC_MNXT, KC_MFFD}, {KC_MUTE, KC_MSTP, KC_MPLY}, {KC_VOLD, KC_MPRV, KC_MRWD}, {XXXXXXX, XXXXXXX, MO(_L9)}},
|
||||||
[_L5] = {{_______, _______, _______}, {_______, _______, _______}, {_______, _______, _______}, {XXXXXXX, XXXXXXX, MO(_L9)}},
|
[_L5] = {{_______, _______, _______}, {_______, _______, _______}, {_______, _______, _______}, {XXXXXXX, XXXXXXX, MO(_L9)}},
|
||||||
[_L6] = {{_______, _______, _______}, {_______, _______, _______}, {_______, _______, _______}, {XXXXXXX, XXXXXXX, MO(_L9)}},
|
[_L6] = {{_______, _______, _______}, {_______, _______, _______}, {_______, _______, _______}, {XXXXXXX, XXXXXXX, MO(_L9)}},
|
||||||
@@ -66,96 +66,93 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|||||||
[_L9] = {{DF(_L6), DF(_L7), DF(_L8)}, {DF(_L3), DF(_L4), DF(_L5)}, {DF(_L0), DF(_L1), DF(_L2)}, {XXXXXXX, XXXXXXX, _______}},
|
[_L9] = {{DF(_L6), DF(_L7), DF(_L8)}, {DF(_L3), DF(_L4), DF(_L5)}, {DF(_L0), DF(_L1), DF(_L2)}, {XXXXXXX, XXXXXXX, _______}},
|
||||||
};
|
};
|
||||||
|
|
||||||
const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) {
|
|
||||||
switch(id) {
|
|
||||||
case 0:
|
|
||||||
if (record->event.pressed) {
|
|
||||||
return MACRO(I(10), D(LGUI), T(R), U(LGUI), END);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
SEND_STRING("chrome.exe\n");
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case 1:
|
|
||||||
if (record->event.pressed) {
|
|
||||||
return MACRO(I(10), D(LCTL), T(W), U(LCTL), END);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
return MACRO_NONE;
|
|
||||||
};
|
|
||||||
|
|
||||||
const uint16_t PROGMEM fn_actions[] = {
|
|
||||||
[0] = ACTION_FUNCTION(0),
|
|
||||||
};
|
|
||||||
|
|
||||||
void action_function(keyrecord_t *record, uint8_t id, uint8_t opt) {
|
|
||||||
switch (id) {
|
|
||||||
case 0:
|
|
||||||
if (record->event.pressed) {
|
|
||||||
SEND_STRING ("[Keyboard: " QMK_KEYBOARD "] -- [QMK Version: " QMK_VERSION "] -- [Keymap: " QMK_KEYMAP "]");
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void matrix_init_user(void) {
|
|
||||||
#ifdef BACKLIGHT_ENABLE
|
|
||||||
backlight_level(0);
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
// Runs constantly in the background, in a loop.
|
|
||||||
void matrix_scan_user(void) {
|
|
||||||
uint8_t layer = biton32(layer_state);
|
|
||||||
|
|
||||||
if (current_layer == layer) {
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
current_layer = layer;
|
|
||||||
switch (layer) {
|
|
||||||
case 0:
|
|
||||||
backlight_level(0);
|
|
||||||
break;
|
|
||||||
case 1:
|
|
||||||
backlight_level(1);
|
|
||||||
break;
|
|
||||||
case 2:
|
|
||||||
backlight_level(2);
|
|
||||||
break;
|
|
||||||
case 3:
|
|
||||||
backlight_level(3);
|
|
||||||
break;
|
|
||||||
case 4:
|
|
||||||
backlight_level(4);
|
|
||||||
break;
|
|
||||||
case 5:
|
|
||||||
backlight_level(5);
|
|
||||||
break;
|
|
||||||
case 6:
|
|
||||||
backlight_level(6);
|
|
||||||
break;
|
|
||||||
case 7:
|
|
||||||
backlight_level(6);
|
|
||||||
break;
|
|
||||||
case 8:
|
|
||||||
backlight_level(6);
|
|
||||||
break;
|
|
||||||
case 9:
|
|
||||||
backlight_level(0);
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
backlight_level(0);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
||||||
// Enable Dynamic Macros.
|
switch (keycode) {
|
||||||
|
case QMK_REV:
|
||||||
|
if (record->event.pressed) {
|
||||||
|
SEND_STRING(QMK_KEYBOARD "/" QMK_KEYMAP "@" QMK_VERSION ":" QMK_BUILDDATE);
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
break;
|
||||||
|
case KC_WEB:
|
||||||
|
if (record->event.pressed) {
|
||||||
|
SEND_STRING(SS_LGUI("r"));
|
||||||
|
wait_ms(100);
|
||||||
|
SEND_STRING("chrome.exe\n");
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
break;
|
||||||
|
case KC_WCLS:
|
||||||
|
if (record->event.pressed) {
|
||||||
|
SEND_STRING (SS_LCTRL("w"));
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
// Dynamic Macros.
|
||||||
if (!process_record_dynamic_macro(keycode, record)) {
|
if (!process_record_dynamic_macro(keycode, record)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void custom_backlight_level(uint8_t level) {
|
||||||
|
if (level > BACKLIGHT_LEVELS)
|
||||||
|
level = BACKLIGHT_LEVELS;
|
||||||
|
backlight_config.level = level;
|
||||||
|
backlight_config.enable = !!backlight_config.level;
|
||||||
|
backlight_set(backlight_config.level);
|
||||||
|
}
|
||||||
|
|
||||||
|
void matrix_init_user(void) {
|
||||||
|
#ifdef BACKLIGHT_ENABLE
|
||||||
|
custom_backlight_level(0);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
void matrix_scan_user(void) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
uint32_t layer_state_set_user(uint32_t state) {
|
||||||
|
switch (biton32(state)) {
|
||||||
|
case _L0:
|
||||||
|
custom_backlight_level(0);
|
||||||
|
break;
|
||||||
|
case _L1:
|
||||||
|
custom_backlight_level(1);
|
||||||
|
break;
|
||||||
|
case _L2:
|
||||||
|
custom_backlight_level(2);
|
||||||
|
break;
|
||||||
|
case _L3:
|
||||||
|
custom_backlight_level(3);
|
||||||
|
break;
|
||||||
|
case _L4:
|
||||||
|
custom_backlight_level(4);
|
||||||
|
break;
|
||||||
|
case _L5:
|
||||||
|
custom_backlight_level(5);
|
||||||
|
break;
|
||||||
|
case _L6:
|
||||||
|
custom_backlight_level(6);
|
||||||
|
break;
|
||||||
|
case _L7:
|
||||||
|
custom_backlight_level(6);
|
||||||
|
break;
|
||||||
|
case _L8:
|
||||||
|
custom_backlight_level(6);
|
||||||
|
break;
|
||||||
|
case _L9:
|
||||||
|
custom_backlight_level(0);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
custom_backlight_level(0);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
return state;
|
||||||
|
}
|
||||||
|
|
||||||
|
void led_set_user(uint8_t usb_led) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|||||||
@@ -2,13 +2,13 @@
|
|||||||
make m10a:gam3cat
|
make m10a:gam3cat
|
||||||
## Layout Config:
|
## Layout Config:
|
||||||
.-----------. .-----------. .-----------. .-----------. .-----------.
|
.-----------. .-----------. .-----------. .-----------. .-----------.
|
||||||
| 7| 8| 9| | +| -| *| | ^| &| !| |VLU|Ver|WFD| |VLU|NXT|FFD|
|
|7 |8 |9 | |+ |- |* | |^ |& |! | |VLU|Ver|WFD| |VLU|NXT|FFD|
|
||||||
|-----------| |-----------| |-----------| |-----------| |-----------|
|
|-----------| |-----------| |-----------| |-----------| |-----------|
|
||||||
| 4| 5| 6| | /| %| ,| | D| E| F| |MUT|C-W|CHR| |MUT|STP|PLY|
|
|4 |5 |6 | |/ |% |, | |D |E |F | |MUT|C-W|CHR| |MUT|STP|PLY|
|
||||||
|-----------| |-----------| |-----------| |-----------| |-----------|
|
|-----------| |-----------| |-----------| |-----------| |-----------|
|
||||||
| 1| 2| 3| | .| =|Ent| | A| B| C| |VLD|CMP|WBK| |VLD|PRV|RWD|
|
|1 |2 |3 | |. |= |Ent| |A |B |C | |VLD|CMP|WBK| |VLD|PRV|RWD|
|
||||||
|-----------| |-----------| |-----------| |-----------| |-----------|
|
|-----------| |-----------| |-----------| |-----------| |-----------|
|
||||||
|L0 | _L9/0| |L1 | _L9 | |L2 | _L9 | |L3 | _L9 | |L4 | _L9 |
|
|#L0|_L9/0 | |#L1|_L9 | |#L2|_L9 | |#L3|_L9 | |#L4|_L9 |
|
||||||
*-----------* *-----------* *-----------* *-----------* *-----------*
|
*-----------* *-----------* *-----------* *-----------* *-----------*
|
||||||
.-----------. .-----------. .-----------. .-----------. .-----------.
|
.-----------. .-----------. .-----------. .-----------. .-----------.
|
||||||
| | | | | | | | |MP1| |MP2| | | |RST| |_L6|_L7|_L8|
|
| | | | | | | | |MP1| |MP2| | | |RST| |_L6|_L7|_L8|
|
||||||
@@ -17,5 +17,5 @@ make m10a:gam3cat
|
|||||||
|-----------| |-----------| |-----------| |-----------| |-----------|
|
|-----------| |-----------| |-----------| |-----------| |-----------|
|
||||||
| | | | | | | | |MR1| |MR2| | | | | |_L0|_L1|_L2|
|
| | | | | | | | |MR1| |MR2| | | | | |_L0|_L1|_L2|
|
||||||
|-----------| |-----------| |-----------| |-----------| |-----------|
|
|-----------| |-----------| |-----------| |-----------| |-----------|
|
||||||
|L5 | _L9 | |L6 | _L9 | |L7 | _L9 | |L8 | _L9 | |L9 | |
|
|#L5|_L9 | |#L6|_L9 | |#L7|_L9 | |#L8|_L9 | |#L9| |
|
||||||
*-----------* *-----------* *-----------* *-----------* *-----------*
|
*-----------* *-----------* *-----------* *-----------* *-----------*
|
||||||
|
|||||||
@@ -1,3 +1,24 @@
|
|||||||
ifndef QUANTUM_DIR
|
# Build Options
|
||||||
include ../../../../Makefile
|
# change to "no" to disable the options, or define them in the Makefile in
|
||||||
endif
|
# the appropriate keymap folder that will get included automatically
|
||||||
|
#
|
||||||
|
TAP_DANCE_ENABLE = no # Enable TapDance functionality
|
||||||
|
RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight.
|
||||||
|
BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000)
|
||||||
|
MOUSEKEY_ENABLE = yes # Mouse keys(+1500)
|
||||||
|
EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
|
||||||
|
CONSOLE_ENABLE = no # Console for debug(+400)
|
||||||
|
COMMAND_ENABLE = no # Commands for debug and configuration
|
||||||
|
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
||||||
|
NKRO_ENABLE = yes # Nkey Rollover - If this doesn't work, add this to config.h: #define FORCE_NKRO
|
||||||
|
BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality
|
||||||
|
MIDI_ENABLE = no # MIDI controls
|
||||||
|
UNICODE_ENABLE = no # Unicode
|
||||||
|
UNICODEMAP_ENABLE = no # Enable extended unicode
|
||||||
|
BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
|
||||||
|
AUDIO_ENABLE = no # Audio output on port C6
|
||||||
|
FAUXCLICKY_ENABLE = no # Uses buzzer to emulate clicky switches. By default, uses the C6 pin, same as AUDIO_ENABLE.
|
||||||
|
#VARIABLE_TRACE = no # Use this to debug changes to variable values
|
||||||
|
API_SYSEX_ENABLE = no # This enables using the Quantum SYSEX API to send strings(+5390)
|
||||||
|
KEY_LOCK_ENABLE = no # This enables key lock(+260)
|
||||||
|
SPLIT_KEYBOARD = no # This enables split keyboard support and includes all necessary files located at quantum/split_common
|
||||||
|
|||||||
@@ -4,6 +4,7 @@
|
|||||||
#define _FN1 2
|
#define _FN1 2
|
||||||
#define _FN2 3
|
#define _FN2 3
|
||||||
#define _WIN 1
|
#define _WIN 1
|
||||||
|
#define _FN3 4
|
||||||
//Tap Dance Declarations
|
//Tap Dance Declarations
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
@@ -22,10 +23,10 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|||||||
LT(OSL(2), KC_TAB), KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC,
|
LT(OSL(2), KC_TAB), KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC,
|
||||||
GUI_T(KC_ESC), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, LT(3, KC_ENT),
|
GUI_T(KC_ESC), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, LT(3, KC_ENT),
|
||||||
KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, TD(TD_DOTCOM), OSL(2), OSM(MOD_RSFT),
|
KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, TD(TD_DOTCOM), OSL(2), OSM(MOD_RSFT),
|
||||||
KC_ESC, KC_LALT, KC_LCTL, KC_SPC, KC_RGUI, RGB_TOG),
|
KC_ESC, KC_LALT, KC_LCTL, KC_SPC, KC_RGUI, MO(4)),
|
||||||
[_WIN] = LAYOUT_625_space(
|
[_WIN] = LAYOUT_625_space(
|
||||||
LT(OSL(2), KC_TAB), KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC,
|
LT(OSL(2), KC_TAB), KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC,
|
||||||
CTL_T(KC_ESC), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, LT(3, KC_ENT),
|
CTL_T(KC_ESC), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, LT(4, KC_ENT),
|
||||||
KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, TD(TD_DOTCOM), OSL(2), OSM(MOD_RSFT),
|
KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, TD(TD_DOTCOM), OSL(2), OSM(MOD_RSFT),
|
||||||
KC_ESC, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, RGB_TOG),
|
KC_ESC, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, RGB_TOG),
|
||||||
[_FN1] = LAYOUT_625_space(
|
[_FN1] = LAYOUT_625_space(
|
||||||
@@ -35,14 +36,15 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|||||||
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS),
|
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS),
|
||||||
|
|
||||||
[_FN2] = LAYOUT_625_space(
|
[_FN2] = LAYOUT_625_space(
|
||||||
KC_PWR, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, RESET,
|
KC_PWR, KC_BRID, KC_BRIU, KC_NO, KC_NO, KC_NO, KC_NO, KC_MRWD, KC_MPLY, KC_MFFD, KC_MUTE, RESET,
|
||||||
MT(KC_LGUI, KC_ESC), KC_LEFT, KC_DOWN, KC_UP, KC_RIGHT, TG(1), KC_TRNS, KC_TRNS, KC_F11, KC_F12, KC_TRNS,
|
MT(KC_LGUI, KC_ESC), KC_LEFT, KC_DOWN, KC_UP, KC_RIGHT, TG(1), KC_TRNS, KC_TRNS, KC_VOLD, KC_VOLU, KC_TRNS,
|
||||||
KC_TRNS, RGB_TOG, RGB_MOD, RGB_VAI, RGB_VAD, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, KC_TRNS, KC_TRNS,
|
KC_TRNS, RGB_TOG, RGB_MOD, RGB_VAI, RGB_VAD, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, KC_TRNS, KC_TRNS,
|
||||||
KC_CAPS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS),
|
KC_CAPS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS),
|
||||||
|
|
||||||
|
[_FN3] = LAYOUT_625_space(
|
||||||
|
KC_PWR, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, RESET,
|
||||||
|
MT(KC_LGUI, KC_ESC), KC_LEFT, KC_DOWN, KC_UP, KC_RIGHT, TG(1), KC_TRNS, KC_TRNS, KC_F11, KC_F12, KC_TRNS,
|
||||||
|
KC_TRNS, RGB_TOG, RGB_MOD, RGB_VAI, RGB_VAD, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, KC_TRNS, KC_TRNS,
|
||||||
|
KC_CAPS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS)
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -234,7 +234,7 @@ void rgblight_step_reverse(void) {
|
|||||||
rgblight_mode(mode);
|
rgblight_mode(mode);
|
||||||
}
|
}
|
||||||
|
|
||||||
uint32_t rgblight_get_mode(void) {
|
uint8_t rgblight_get_mode(void) {
|
||||||
if (!rgblight_config.enable) {
|
if (!rgblight_config.enable) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|||||||
19
keyboards/namecard2x4/keymaps/brainfuck/config.h
Normal file
19
keyboards/namecard2x4/keymaps/brainfuck/config.h
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
/* Copyright 2018 takashiski
|
||||||
|
*
|
||||||
|
* 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/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
// place overrides here
|
||||||
59
keyboards/namecard2x4/keymaps/brainfuck/keymap.c
Normal file
59
keyboards/namecard2x4/keymaps/brainfuck/keymap.c
Normal file
@@ -0,0 +1,59 @@
|
|||||||
|
/* Copyright 2018 takashiski
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
#include "keymap_jp.h"
|
||||||
|
|
||||||
|
enum Layer
|
||||||
|
{
|
||||||
|
JP,
|
||||||
|
EN,
|
||||||
|
CONFIG
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||||
|
[JP] = LAYOUT(
|
||||||
|
JP_LT,JP_GT,JP_PLUS,JP_MINS,\
|
||||||
|
LT(CONFIG,JP_DOT),JP_COMM,JP_LBRC,LT(CONFIG,JP_RBRC)\
|
||||||
|
),
|
||||||
|
[EN] = LAYOUT(
|
||||||
|
KC_LT,KC_GT,KC_PLUS,KC_MINS,\
|
||||||
|
LT(CONFIG,KC_DOT),KC_COMM,KC_LBRC,LT(CONFIG,KC_RBRC)\
|
||||||
|
),
|
||||||
|
[CONFIG]= LAYOUT(
|
||||||
|
KC_NO,DF(JP),DF(JP),KC_NO,\
|
||||||
|
KC_TRNS,DF(EN),DF(JP),KC_TRNS\
|
||||||
|
)
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
void matrix_init_user(void) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void matrix_scan_user(void) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
void led_set_user(uint8_t usb_led) {
|
||||||
|
|
||||||
|
}
|
||||||
12
keyboards/namecard2x4/keymaps/brainfuck/readme.md
Normal file
12
keyboards/namecard2x4/keymaps/brainfuck/readme.md
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
# keymap for brainfuck
|
||||||
|
|
||||||
|
This keymap is specialized for the brainfuck programming language.
|
||||||
|
|
||||||
|
| < | > | + | - |
|
||||||
|
| . | , | [ | ] |
|
||||||
|
|
||||||
|
and when you hold . or ], change config layer.
|
||||||
|
|
||||||
|
default layer is for JP keyboard(logical pairing).
|
||||||
|
you can choose EN keyboard(typewrite pairing).
|
||||||
|
|
||||||
@@ -97,9 +97,11 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
void matrix_init_keymap(void) {
|
void matrix_init_keymap(void) {
|
||||||
DDRD &= ~(1<<5);
|
#ifndef CONVERT_TO_PROTON_C
|
||||||
PORTD &= ~(1<<5);
|
setPinOutput(D5);
|
||||||
|
writePinHigh(D5);
|
||||||
|
|
||||||
DDRB &= ~(1<<0);
|
setPinOutput(B0);
|
||||||
PORTB &= ~(1<<0);
|
writePinHigh(B0);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -24,7 +24,6 @@ enum planck_layers {
|
|||||||
_NUMBER,
|
_NUMBER,
|
||||||
_SYMBOL,
|
_SYMBOL,
|
||||||
_FUNC,
|
_FUNC,
|
||||||
_ADJUST
|
|
||||||
};
|
};
|
||||||
|
|
||||||
enum planck_keycodes {
|
enum planck_keycodes {
|
||||||
@@ -33,11 +32,10 @@ enum planck_keycodes {
|
|||||||
|
|
||||||
#define SPC_SHF MT(MOD_LSFT, KC_SPC)
|
#define SPC_SHF MT(MOD_LSFT, KC_SPC)
|
||||||
|
|
||||||
#define ENT_FUN LT(_FUNC, KC_ENT)
|
#define ESC_HYP MT(MOD_HYPR, KC_ESC)
|
||||||
#define ESC_FUN LT(_FUNC, KC_ESC)
|
|
||||||
#define TAB_NUM LT(_NUMBER, KC_TAB)
|
#define TAB_NUM LT(_NUMBER, KC_TAB)
|
||||||
#define BSP_SYM LT(_SYMBOL, KC_BSPC)
|
#define BSP_SYM LT(_SYMBOL, KC_BSPC)
|
||||||
#define DEL_ADJ LT(_ADJUST, KC_DEL)
|
#define DEL_WRP MT(MOD_LCTL | MOD_LALT | MOD_LGUI, KC_DEL)
|
||||||
|
|
||||||
#define SYMLOCK TG(_SYMBOL)
|
#define SYMLOCK TG(_SYMBOL)
|
||||||
#define NUMLOCK TG(_NUMBER)
|
#define NUMLOCK TG(_NUMBER)
|
||||||
@@ -48,18 +46,25 @@ enum planck_keycodes {
|
|||||||
#define ONE_HYP OSM(MOD_HYPR)
|
#define ONE_HYP OSM(MOD_HYPR)
|
||||||
#define ONE_MEH OSM(MOD_MEH)
|
#define ONE_MEH OSM(MOD_MEH)
|
||||||
#define ONE_WRP OSM(MOD_LCTL | MOD_LALT | MOD_LGUI)
|
#define ONE_WRP OSM(MOD_LCTL | MOD_LALT | MOD_LGUI)
|
||||||
|
#define ONE_WOA OSM(MOD_LCTL | MOD_LGUI | MOD_LSFT)
|
||||||
|
#define ONE_DER OSM(MOD_LALT | MOD_LGUI | MOD_LSFT)
|
||||||
|
|
||||||
#define A_CTRL MT(MOD_LCTL, KC_A)
|
#define A_CTRL MT(MOD_LCTL, KC_A)
|
||||||
#define S_ALT MT(MOD_LALT, KC_S)
|
#define S_ALT MT(MOD_LALT, KC_S)
|
||||||
#define D_GUI MT(MOD_LGUI, KC_D)
|
#define D_GUI MT(MOD_LGUI, KC_D)
|
||||||
#define F_SHFT MT(MOD_LSFT, KC_F)
|
#define F_SHFT MT(MOD_LSFT, KC_F)
|
||||||
#define G_NUM LT(_NUMBER, KC_G)
|
#define J_SHFT MT(MOD_RSFT, KC_J)
|
||||||
#define H_NAV LT(_SYMBOL, KC_H)
|
#define K_GUI MT(MOD_RGUI, KC_K)
|
||||||
#define J_SHFT MT(MOD_RSFT, KC_J)
|
#define L_ALT MT(MOD_RALT, KC_L)
|
||||||
#define K_GUI MT(MOD_RGUI, KC_K)
|
|
||||||
#define L_ALT MT(MOD_RALT, KC_L)
|
|
||||||
#define MINSCTL MT(MOD_RCTL, KC_MINS)
|
#define MINSCTL MT(MOD_RCTL, KC_MINS)
|
||||||
#define SCL_CTL MT(MOD_RCTL, KC_SCLN)
|
|
||||||
|
#define ENT_CTL MT(MOD_LCTL, KC_ENT)
|
||||||
|
#define LT_ALT MT(MOD_LALT, KC_LEFT)
|
||||||
|
#define DN_GUI MT(MOD_LGUI, KC_DOWN)
|
||||||
|
#define RT_SHFT MT(MOD_LSFT, KC_RGHT)
|
||||||
|
#define N4_SHFT MT(MOD_RSFT, KC_4)
|
||||||
|
#define N5_GUI MT(MOD_RGUI, KC_5)
|
||||||
|
#define N6_ALT MT(MOD_RALT, KC_6)
|
||||||
|
|
||||||
#define BWORD LALT(KC_LEFT)
|
#define BWORD LALT(KC_LEFT)
|
||||||
#define FWORD LALT(KC_RIGHT)
|
#define FWORD LALT(KC_RIGHT)
|
||||||
@@ -68,6 +73,8 @@ enum planck_keycodes {
|
|||||||
#define PWIN LGUI(LSFT(KC_GRV))
|
#define PWIN LGUI(LSFT(KC_GRV))
|
||||||
#define NTAB LGUI(LSFT(KC_RBRC))
|
#define NTAB LGUI(LSFT(KC_RBRC))
|
||||||
#define PTAB LGUI(LSFT(KC_LBRC))
|
#define PTAB LGUI(LSFT(KC_LBRC))
|
||||||
|
#define NAVBACK LGUI(KC_LBRC)
|
||||||
|
#define NAVFWD LGUI(KC_RBRC)
|
||||||
|
|
||||||
#define XMSNCTL HYPR(KC_F14)
|
#define XMSNCTL HYPR(KC_F14)
|
||||||
#define XDSKTOP HYPR(KC_F15)
|
#define XDSKTOP HYPR(KC_F15)
|
||||||
@@ -82,7 +89,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|||||||
| | | | | | | | | | | | |
|
| | | | | | | | | | | | |
|
||||||
|------|------|------|------|------|------|------|------|------|------|------|------|
|
|------|------|------|------|------|------|------|------|------|------|------|------|
|
||||||
| ( | a | s | d | f | g | h | j | k | l | ; | ' |
|
| ( | a | s | d | f | g | h | j | k | l | ; | ' |
|
||||||
| | CTRL | ALT | GUI | SHIFT| NUMBR| SYMBL| SHIFT| GUI | ALT | CTRL | |
|
| | CTRL | ALT | GUI | SHIFT| | | SHIFT| GUI | ALT | CTRL | |
|
||||||
|------|------|------|------|------|------|------|------|------|------|------|------|
|
|------|------|------|------|------|------|------|------|------|------|------|------|
|
||||||
| [ | z | x | c | v | b | n | m | , | . | / | > |
|
| [ | z | x | c | v | b | n | m | , | . | / | > |
|
||||||
| | | | | | | | | | | | |
|
| | | | | | | | | | | | |
|
||||||
@@ -92,71 +99,54 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|||||||
*/
|
*/
|
||||||
[_QWERTY] = LAYOUT_planck_grid(
|
[_QWERTY] = LAYOUT_planck_grid(
|
||||||
KC_HASH, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_SCLN,
|
KC_HASH, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_SCLN,
|
||||||
KC_LPRN, A_CTRL, S_ALT, D_GUI, F_SHFT, G_NUM, H_NAV, J_SHFT, K_GUI, L_ALT, MINSCTL, KC_QUOT,
|
KC_LPRN, A_CTRL, S_ALT, D_GUI, F_SHFT, KC_G, KC_H, J_SHFT, K_GUI, L_ALT, MINSCTL, KC_QUOT,
|
||||||
KC_LBRC, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RABK,
|
KC_LBRC, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RABK,
|
||||||
KC_CAPS, ONE_ALT, ONE_GUI, ESC_FUN, TAB_NUM, SPC_SHF, SPC_SHF, BSP_SYM, DEL_ADJ, ONE_HYP, ONE_MEH, ONE_WRP
|
NUMLOCK, MO(_FUNC), ONE_MEH, ESC_HYP, TAB_NUM, SPC_SHF, SPC_SHF, BSP_SYM, DEL_WRP, ONE_WRP, ONE_DER, SYMLOCK
|
||||||
),
|
),
|
||||||
|
|
||||||
/* Symbol
|
/* Symbol
|
||||||
| | & | ` | ~ | [ | ] | < | > | + | | | | - |
|
| | & | ` | ~ | [ | ] | < | > | + | | | | |
|
||||||
| | $ | % | = | ( | ) | | : | ! | @ | * | ' |
|
| | $ | % | = | ( | ) | ; | : | ! | @ | _ | |
|
||||||
| | | ^ | # | { | } | | " | | | \ | | |
|
| | | ^ | # | { | } | ' | " | | | \ | ? | |
|
||||||
| | | | | LOCK | | .... | | | | |
|
| | | | | | | .... | | | | |
|
||||||
*/
|
*/
|
||||||
[_SYMBOL] = LAYOUT_planck_grid(
|
[_SYMBOL] = LAYOUT_planck_grid(
|
||||||
_______, KC_AMPR, KC_GRV, KC_TILD, KC_LBRC, KC_RBRC, KC_LABK, KC_RABK, KC_PLUS, KC_ASTR, XXXXXXX, _______,
|
KC_ESC, KC_AMPR, KC_GRV, KC_TILD, KC_LBRC, KC_RBRC, KC_LABK, KC_RABK, KC_PLUS, KC_ASTR, XXXXXXX, KC_DEL,
|
||||||
_______, KC_DLR, KC_PERC, KC_EQL, KC_LPRN, KC_RPRN, KC_SCLN, KC_COLN, KC_EXLM, KC_AT, KC_ASTR, _______,
|
KC_ENT, KC_DLR, KC_PERC, KC_EQL, KC_LPRN, KC_RPRN, KC_SCLN, KC_COLN, KC_EXLM, KC_AT, KC_UNDS, KC_BSPC,
|
||||||
_______, XXXXXXX, KC_CIRC, KC_HASH, KC_LCBR, KC_RCBR, KC_QUOT, KC_DQUO, KC_PIPE, KC_BSLS, XXXXXXX, _______,
|
_______, XXXXXXX, KC_CIRC, KC_HASH, KC_LCBR, KC_RCBR, KC_QUOT, KC_DQUO, KC_PIPE, KC_BSLS, KC_QUES, _______,
|
||||||
_______, _______, _______, _______, SYMLOCK, _______, _______, _______, _______, _______, _______, _______
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
|
||||||
),
|
),
|
||||||
/* Number
|
/* Number
|
||||||
| | |<-word| up |word->| PgUp | . | 7 | 8 | 9 | + | * |
|
| | |<-word| up |word->| PgUp | . | 7 | 8 | 9 | + | * |
|
||||||
| | Enter| left | down | right| PgDn | 0 | 4 | 5 | 6 | - | / |
|
| | Enter| left | down | right| PgDn | 0 | 4 | 5 | 6 | - | / |
|
||||||
| | Bksp | Home | tab | End | Del | , | 1 | 2 | 3 | = | % |
|
| | Bksp | Home | tab | End | Del | , | 1 | 2 | 3 | = | % |
|
||||||
| | | | | .... | | LOCK | | : | $ | |
|
| | | | | .... | | | | : | $ | |
|
||||||
*/
|
*/
|
||||||
[_NUMBER] = LAYOUT_planck_grid(
|
[_NUMBER] = LAYOUT_planck_grid(
|
||||||
XXXXXXX, _______, BWORD, KC_UP, FWORD, KC_PGUP, KC_DOT, KC_7, KC_8, KC_9, KC_PLUS, KC_ASTR,
|
XXXXXXX, XXXXXXX, BWORD, KC_UP, FWORD, KC_PGUP, KC_DOT, KC_7, KC_8, KC_9, KC_PLUS, KC_ASTR,
|
||||||
XXXXXXX, KC_ENT , KC_LEFT, KC_DOWN, KC_RGHT, KC_PGDN, KC_0, KC_4, KC_5, KC_6, KC_MINS, KC_SLSH,
|
KC_CAPS, ENT_CTL, LT_ALT, DN_GUI, RT_SHFT, KC_PGDN, KC_0, N4_SHFT, N5_GUI, N6_ALT, MINSCTL, KC_SLSH,
|
||||||
XXXXXXX, KC_BSPC, KC_HOME, KC_TAB, KC_END, KC_DEL, KC_COMM, KC_1, KC_2, KC_3, KC_EQL, KC_PERC,
|
XXXXXXX, KC_BSPC, KC_HOME, KC_TAB, KC_END, KC_DEL, KC_COMM, KC_1, KC_2, KC_3, KC_EQL, KC_PERC,
|
||||||
_______, _______, _______, _______, _______, _______, _______, NUMLOCK, _______, KC_COLN, KC_DLR, _______
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, KC_COLN, KC_DLR, _______
|
||||||
),
|
),
|
||||||
/* Function
|
/* Function
|
||||||
* | | Mctl | Pspc | Nwin | Nspc | Desk | | F7 | F8 | F9 | F10 | F13 |
|
* | Reset| Mctl | Pspc | Nwin | Nspc | Desk | | F7 | F8 | F9 | F10 | F13 |
|
||||||
* | | Nctr | Ptab | Pwin | Ntab | | | F4 | F5 | F6 | F11 | F14 |
|
* | Debug| Nctr | Ptab | Pwin | Ntab | Back | Fwd | F4 | F5 | F6 | F11 | F14 |
|
||||||
* | Mute | Vol- | Vol+ | Trk- | Trk+ | Play | | F1 | F2 | F3 | F12 | F15 |
|
* | Mute | Vol- | Vol+ | Trk- | Trk+ | Play | | F1 | F2 | F3 | F12 | F15 |
|
||||||
* | | | | | | | | | | | | |
|
* | | | | | | | | | | | | |
|
||||||
*/
|
*/
|
||||||
[_FUNC] = LAYOUT_planck_grid(
|
[_FUNC] = LAYOUT_planck_grid(
|
||||||
XXXXXXX, XMSNCTL, XPRVSPC, NWIN, XNXTSPC, XDSKTOP, XXXXXXX, KC_F7, KC_F8, KC_F9, KC_F10, KC_F13,
|
RESET, XMSNCTL, XPRVSPC, NWIN, XNXTSPC, XDSKTOP, XXXXXXX, KC_F7, KC_F8, KC_F9, KC_F10, KC_F13,
|
||||||
XXXXXXX, XNOTIFY, PTAB, PWIN, NTAB, XXXXXXX, XXXXXXX, KC_F4, KC_F5, KC_F6, KC_F11, KC_F14,
|
DEBUG, XNOTIFY, PTAB, PWIN, NTAB, NAVBACK, NAVFWD, KC_F4, KC_F5, KC_F6, KC_F11, KC_F14,
|
||||||
KC_MUTE, KC_VOLD, KC_VOLU, KC_MRWD, KC_MFFD, KC_MPLY, XXXXXXX, KC_F1, KC_F2, KC_F3, KC_F12, KC_F15,
|
KC_MUTE, KC_VOLD, KC_VOLU, KC_MRWD, KC_MFFD, KC_MPLY, XXXXXXX, KC_F1, KC_F2, KC_F3, KC_F12, KC_F15,
|
||||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
|
||||||
),
|
|
||||||
|
|
||||||
/* Adjust (Lower + Raise)
|
|
||||||
* ,-----------------------------------------------------------------------------------.
|
|
||||||
* | Reset| Debug| | | | | | | | | | |
|
|
||||||
* | | | | | | | | | | | | |
|
|
||||||
* | | | | | | | | | | | | |
|
|
||||||
* | | | | | | | | | | | | |
|
|
||||||
* `-----------------------------------------------------------------------------------'
|
|
||||||
*/
|
|
||||||
[_ADJUST] = LAYOUT_planck_grid(
|
|
||||||
RESET, DEBUG, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX,
|
|
||||||
XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX,
|
|
||||||
XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX,
|
|
||||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
|
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#ifdef AUDIO_ENABLE
|
#ifdef AUDIO_ENABLE
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
uint32_t layer_state_set_user(uint32_t state) {
|
uint32_t layer_state_set_user(uint32_t state) {
|
||||||
/* state = update_tri_layer_state(state, _SYMBOL, _NUMBER, _ADJUST); */
|
state = update_tri_layer_state(state, _SYMBOL, _NUMBER, _FUNC);
|
||||||
return state;
|
return state;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -60,7 +60,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|||||||
KC_TAB , KC_Q , KC_W , KC_E , KC_R , KC_T , KC_Y , KC_U , KC_I , KC_O , KC_P , NO_AA ,
|
KC_TAB , KC_Q , KC_W , KC_E , KC_R , KC_T , KC_Y , KC_U , KC_I , KC_O , KC_P , NO_AA ,
|
||||||
UTILITY, KC_A , KC_S , KC_D , KC_F , KC_G , KC_H , KC_J , KC_K , KC_L , NO_OSLH, NO_AE ,
|
UTILITY, KC_A , KC_S , KC_D , KC_F , KC_G , KC_H , KC_J , KC_K , KC_L , NO_OSLH, NO_AE ,
|
||||||
KC_LSPO, KC_Z , KC_X , KC_C , KC_V , KC_B , KC_N , KC_M , KC_COMM, KC_DOT , NO_MINS, KC_RSPC,
|
KC_LSPO, KC_Z , KC_X , KC_C , KC_V , KC_B , KC_N , KC_M , KC_COMM, KC_DOT , NO_MINS, KC_RSPC,
|
||||||
LFT_CTR, KC_LALT, KC_LGUI, NO_AT , ESC_LOW, KC_ENT , KC_SPC , BSP_RAI, _______, NO_ALGR, NO_ASTR, RGT_CTR
|
LFT_CTR, KC_LALT, KC_LGUI, NO_AT , ESC_LOW, KC_ENT , KC_SPC , BSP_RAI, _______, KC_ALGR, NO_ASTR, RGT_CTR
|
||||||
),
|
),
|
||||||
|
|
||||||
/* Raise
|
/* Raise
|
||||||
|
|||||||
@@ -46,7 +46,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|||||||
KC_ESC, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, NO_AM, \
|
KC_ESC, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, NO_AM, \
|
||||||
KC_TAB, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, NO_AE, NO_OSLH, \
|
KC_TAB, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, NO_AE, NO_OSLH, \
|
||||||
KC_LSFT, NO_LESS, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_DOT, KC_COMM, NO_MINS, \
|
KC_LSFT, NO_LESS, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_DOT, KC_COMM, NO_MINS, \
|
||||||
KC_LCTL, KC_LALT, KC_LGUI, NO_ALGR, LOWER, KC_SPC, KC_ENT, RAISE, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT \
|
KC_LCTL, KC_LALT, KC_LGUI, KC_ALGR, LOWER, KC_SPC, KC_ENT, RAISE, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT \
|
||||||
),
|
),
|
||||||
|
|
||||||
/* Lower
|
/* Lower
|
||||||
@@ -109,7 +109,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|||||||
KC_ESC, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, NO_AM, \
|
KC_ESC, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, NO_AM, \
|
||||||
KC_TAB, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, NO_AE, NO_OSLH, \
|
KC_TAB, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, NO_AE, NO_OSLH, \
|
||||||
KC_LSFT, NO_LESS, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_DOT, KC_COMM, NO_MINS, \
|
KC_LSFT, NO_LESS, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_DOT, KC_COMM, NO_MINS, \
|
||||||
KC_LCTL, KC_LALT, KC_LGUI, NO_ALGR, MLOWER, KC_SPC, KC_ENT, MRAISE, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT \
|
KC_LCTL, KC_LALT, KC_LGUI, KC_ALGR, MLOWER, KC_SPC, KC_ENT, MRAISE, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT \
|
||||||
),
|
),
|
||||||
|
|
||||||
/* Mac Lower
|
/* Mac Lower
|
||||||
|
|||||||
@@ -35,7 +35,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|||||||
KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, DE_Z, KC_U, KC_I, KC_O, KC_P, DE_UE, DE_PLUS, \
|
KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, DE_Z, KC_U, KC_I, KC_O, KC_P, DE_UE, DE_PLUS, \
|
||||||
FN_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, DE_OE, DE_AE, DE_HASH, KC_ENT, \
|
FN_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, DE_OE, DE_AE, DE_HASH, KC_ENT, \
|
||||||
KC_LSFT, DE_LESS, DE_Y, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, DE_MINS, KC_RSFT, KC_DELETE, \
|
KC_LSFT, DE_LESS, DE_Y, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, DE_MINS, KC_RSFT, KC_DELETE, \
|
||||||
KC_LCTL, KC_LGUI, KC_LALT, KC_SPACE, DE_ALGR, KC_RGUI, KC_APP, KC_RCTL),
|
KC_LCTL, KC_LGUI, KC_LALT, KC_SPACE, KC_ALGR, KC_RGUI, KC_APP, KC_RCTL),
|
||||||
|
|
||||||
|
|
||||||
/* Keymap _FNK: Function Keys
|
/* Keymap _FNK: Function Keys
|
||||||
|
|||||||
56
keyboards/snagpad/config.h
Normal file
56
keyboards/snagpad/config.h
Normal file
@@ -0,0 +1,56 @@
|
|||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "config_common.h"
|
||||||
|
|
||||||
|
/* USB Device descriptor parameter */
|
||||||
|
#define VENDOR_ID 0xFEED
|
||||||
|
#define PRODUCT_ID 0x6060
|
||||||
|
#define DEVICE_VER 0x0001
|
||||||
|
#define MANUFACTURER Flehrad
|
||||||
|
#define PRODUCT Snagpad
|
||||||
|
#define DESCRIPTION A Pro Micro-Powered 5x4 macropad/numpad
|
||||||
|
|
||||||
|
/* key matrix size */
|
||||||
|
#define MATRIX_ROWS 5
|
||||||
|
#define MATRIX_COLS 4
|
||||||
|
|
||||||
|
/* key matrix pins */
|
||||||
|
#define MATRIX_ROW_PINS { D1, D0, D4, C6, D7 }
|
||||||
|
#define MATRIX_COL_PINS { F4, F5, F6, F7 }
|
||||||
|
#define UNUSED_PINS
|
||||||
|
|
||||||
|
/* COL2ROW or ROW2COL */
|
||||||
|
#define DIODE_DIRECTION COL2ROW
|
||||||
|
|
||||||
|
/* number of backlight levels */
|
||||||
|
|
||||||
|
#ifdef BACKLIGHT_PIN
|
||||||
|
#define BACKLIGHT_LEVELS 3
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Set 0 if debouncing isn't needed */
|
||||||
|
#define DEBOUNCING_DELAY 5
|
||||||
|
|
||||||
|
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
|
||||||
|
#define LOCKING_SUPPORT_ENABLE
|
||||||
|
|
||||||
|
/* Locking resynchronize hack */
|
||||||
|
#define LOCKING_RESYNC_ENABLE
|
||||||
|
|
||||||
|
/* key combination for command */
|
||||||
|
#define IS_COMMAND() ( \
|
||||||
|
keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)) \
|
||||||
|
)
|
||||||
|
|
||||||
|
/* prevent stuck modifiers */
|
||||||
|
//#define STRICT_LAYER_RELEASE
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef RGB_DI_PIN
|
||||||
|
#define RGBLIGHT_ANIMATIONS
|
||||||
|
#define RGBLED_NUM 0
|
||||||
|
#define RGBLIGHT_HUE_STEP 8
|
||||||
|
#define RGBLIGHT_SAT_STEP 8
|
||||||
|
#define RGBLIGHT_VAL_STEP 8
|
||||||
|
#endif
|
||||||
|
|
||||||
17
keyboards/snagpad/info.json
Normal file
17
keyboards/snagpad/info.json
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"keyboard_name": "Snagpad",
|
||||||
|
"url": "",
|
||||||
|
"maintainer": "Flehrad",
|
||||||
|
|
||||||
|
"width": 4,
|
||||||
|
"height": 5,
|
||||||
|
"layouts": {
|
||||||
|
"LAYOUT_ortho_5x4": {
|
||||||
|
"layout": [{"x":0, "y":0}, {"x":1, "y":0}, {"x":2, "y":0}, {"x":3, "y":0}, {"x":0, "y":1}, {"x":1, "y":1}, {"x":2, "y":1}, {"x":3, "y":1}, {"x":0, "y":2}, {"x":1, "y":2}, {"x":2, "y":2}, {"x":3, "y":2}, {"x":0, "y":3}, {"x":1, "y":3}, {"x":2, "y":3}, {"x":3, "y":3}, {"x":0, "y":4}, {"x":1, "y":4}, {"x":2, "y":4}, {"x":3, "y":4}]
|
||||||
|
},
|
||||||
|
"LAYOUT_numpad_5x4": {
|
||||||
|
"layout": [{"x":0, "y":0}, {"x":1, "y":0}, {"x":2, "y":0}, {"x":3, "y":0}, {"x":0, "y":1}, {"x":1, "y":1}, {"x":2, "y":1}, {"x":3, "y":1, "h":2}, {"x":0, "y":2}, {"x":1, "y":2}, {"x":2, "y":2}, {"x":0, "y":3}, {"x":1, "y":3}, {"x":2, "y":3}, {"x":3, "y":3, "h":2}, {"x":0, "y":4, "w":2}, {"x":2, "y":4}]
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
63
keyboards/snagpad/keymaps/default/keymap.c
Normal file
63
keyboards/snagpad/keymaps/default/keymap.c
Normal file
@@ -0,0 +1,63 @@
|
|||||||
|
#include QMK_KEYBOARD_H
|
||||||
|
|
||||||
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||||
|
|
||||||
|
LAYOUT_ortho_5x4(
|
||||||
|
KC_NLCK, KC_PSLS, KC_PAST, KC_PMNS,
|
||||||
|
KC_P7, KC_P8, KC_P9, KC_PPLS,
|
||||||
|
KC_P4, KC_P5, KC_P6, KC_PPLS,
|
||||||
|
KC_P1, KC_P2, KC_P3, KC_PENT,
|
||||||
|
KC_P0, KC_P0, KC_PDOT, KC_PENT),
|
||||||
|
|
||||||
|
LAYOUT_numpad_5x4(
|
||||||
|
KC_NLCK, KC_PSLS, KC_PAST, KC_PMNS,
|
||||||
|
KC_P7, KC_P8, KC_P9,
|
||||||
|
KC_P4, KC_P5, KC_P6, KC_PPLS,
|
||||||
|
KC_P1, KC_P2, KC_P3,
|
||||||
|
KC_P0, KC_PDOT, KC_PENT),
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
void matrix_init_user(void) {
|
||||||
|
}
|
||||||
|
|
||||||
|
void matrix_scan_user(void) {
|
||||||
|
}
|
||||||
|
|
||||||
|
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
void led_set_user(uint8_t usb_led) {
|
||||||
|
|
||||||
|
if (usb_led & (1 << USB_LED_NUM_LOCK)) {
|
||||||
|
|
||||||
|
} else {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
if (usb_led & (1 << USB_LED_CAPS_LOCK)) {
|
||||||
|
|
||||||
|
} else {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
if (usb_led & (1 << USB_LED_SCROLL_LOCK)) {
|
||||||
|
|
||||||
|
} else {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
if (usb_led & (1 << USB_LED_COMPOSE)) {
|
||||||
|
|
||||||
|
} else {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
if (usb_led & (1 << USB_LED_KANA)) {
|
||||||
|
|
||||||
|
} else {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
201
keyboards/snagpad/license
Normal file
201
keyboards/snagpad/license
Normal file
@@ -0,0 +1,201 @@
|
|||||||
|
Apache License
|
||||||
|
Version 2.0, January 2004
|
||||||
|
http://www.apache.org/licenses/
|
||||||
|
|
||||||
|
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||||
|
|
||||||
|
1. Definitions.
|
||||||
|
|
||||||
|
"License" shall mean the terms and conditions for use, reproduction,
|
||||||
|
and distribution as defined by Sections 1 through 9 of this document.
|
||||||
|
|
||||||
|
"Licensor" shall mean the copyright owner or entity authorized by
|
||||||
|
the copyright owner that is granting the License.
|
||||||
|
|
||||||
|
"Legal Entity" shall mean the union of the acting entity and all
|
||||||
|
other entities that control, are controlled by, or are under common
|
||||||
|
control with that entity. For the purposes of this definition,
|
||||||
|
"control" means (i) the power, direct or indirect, to cause the
|
||||||
|
direction or management of such entity, whether by contract or
|
||||||
|
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||||
|
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||||
|
|
||||||
|
"You" (or "Your") shall mean an individual or Legal Entity
|
||||||
|
exercising permissions granted by this License.
|
||||||
|
|
||||||
|
"Source" form shall mean the preferred form for making modifications,
|
||||||
|
including but not limited to software source code, documentation
|
||||||
|
source, and configuration files.
|
||||||
|
|
||||||
|
"Object" form shall mean any form resulting from mechanical
|
||||||
|
transformation or translation of a Source form, including but
|
||||||
|
not limited to compiled object code, generated documentation,
|
||||||
|
and conversions to other media types.
|
||||||
|
|
||||||
|
"Work" shall mean the work of authorship, whether in Source or
|
||||||
|
Object form, made available under the License, as indicated by a
|
||||||
|
copyright notice that is included in or attached to the work
|
||||||
|
(an example is provided in the Appendix below).
|
||||||
|
|
||||||
|
"Derivative Works" shall mean any work, whether in Source or Object
|
||||||
|
form, that is based on (or derived from) the Work and for which the
|
||||||
|
editorial revisions, annotations, elaborations, or other modifications
|
||||||
|
represent, as a whole, an original work of authorship. For the purposes
|
||||||
|
of this License, Derivative Works shall not include works that remain
|
||||||
|
separable from, or merely link (or bind by name) to the interfaces of,
|
||||||
|
the Work and Derivative Works thereof.
|
||||||
|
|
||||||
|
"Contribution" shall mean any work of authorship, including
|
||||||
|
the original version of the Work and any modifications or additions
|
||||||
|
to that Work or Derivative Works thereof, that is intentionally
|
||||||
|
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||||
|
or by an individual or Legal Entity authorized to submit on behalf of
|
||||||
|
the copyright owner. For the purposes of this definition, "submitted"
|
||||||
|
means any form of electronic, verbal, or written communication sent
|
||||||
|
to the Licensor or its representatives, including but not limited to
|
||||||
|
communication on electronic mailing lists, source code control systems,
|
||||||
|
and issue tracking systems that are managed by, or on behalf of, the
|
||||||
|
Licensor for the purpose of discussing and improving the Work, but
|
||||||
|
excluding communication that is conspicuously marked or otherwise
|
||||||
|
designated in writing by the copyright owner as "Not a Contribution."
|
||||||
|
|
||||||
|
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||||
|
on behalf of whom a Contribution has been received by Licensor and
|
||||||
|
subsequently incorporated within the Work.
|
||||||
|
|
||||||
|
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||||
|
this License, each Contributor hereby grants to You a perpetual,
|
||||||
|
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||||
|
copyright license to reproduce, prepare Derivative Works of,
|
||||||
|
publicly display, publicly perform, sublicense, and distribute the
|
||||||
|
Work and such Derivative Works in Source or Object form.
|
||||||
|
|
||||||
|
3. Grant of Patent License. Subject to the terms and conditions of
|
||||||
|
this License, each Contributor hereby grants to You a perpetual,
|
||||||
|
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||||
|
(except as stated in this section) patent license to make, have made,
|
||||||
|
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||||
|
where such license applies only to those patent claims licensable
|
||||||
|
by such Contributor that are necessarily infringed by their
|
||||||
|
Contribution(s) alone or by combination of their Contribution(s)
|
||||||
|
with the Work to which such Contribution(s) was submitted. If You
|
||||||
|
institute patent litigation against any entity (including a
|
||||||
|
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||||
|
or a Contribution incorporated within the Work constitutes direct
|
||||||
|
or contributory patent infringement, then any patent licenses
|
||||||
|
granted to You under this License for that Work shall terminate
|
||||||
|
as of the date such litigation is filed.
|
||||||
|
|
||||||
|
4. Redistribution. You may reproduce and distribute copies of the
|
||||||
|
Work or Derivative Works thereof in any medium, with or without
|
||||||
|
modifications, and in Source or Object form, provided that You
|
||||||
|
meet the following conditions:
|
||||||
|
|
||||||
|
(a) You must give any other recipients of the Work or
|
||||||
|
Derivative Works a copy of this License; and
|
||||||
|
|
||||||
|
(b) You must cause any modified files to carry prominent notices
|
||||||
|
stating that You changed the files; and
|
||||||
|
|
||||||
|
(c) You must retain, in the Source form of any Derivative Works
|
||||||
|
that You distribute, all copyright, patent, trademark, and
|
||||||
|
attribution notices from the Source form of the Work,
|
||||||
|
excluding those notices that do not pertain to any part of
|
||||||
|
the Derivative Works; and
|
||||||
|
|
||||||
|
(d) If the Work includes a "NOTICE" text file as part of its
|
||||||
|
distribution, then any Derivative Works that You distribute must
|
||||||
|
include a readable copy of the attribution notices contained
|
||||||
|
within such NOTICE file, excluding those notices that do not
|
||||||
|
pertain to any part of the Derivative Works, in at least one
|
||||||
|
of the following places: within a NOTICE text file distributed
|
||||||
|
as part of the Derivative Works; within the Source form or
|
||||||
|
documentation, if provided along with the Derivative Works; or,
|
||||||
|
within a display generated by the Derivative Works, if and
|
||||||
|
wherever such third-party notices normally appear. The contents
|
||||||
|
of the NOTICE file are for informational purposes only and
|
||||||
|
do not modify the License. You may add Your own attribution
|
||||||
|
notices within Derivative Works that You distribute, alongside
|
||||||
|
or as an addendum to the NOTICE text from the Work, provided
|
||||||
|
that such additional attribution notices cannot be construed
|
||||||
|
as modifying the License.
|
||||||
|
|
||||||
|
You may add Your own copyright statement to Your modifications and
|
||||||
|
may provide additional or different license terms and conditions
|
||||||
|
for use, reproduction, or distribution of Your modifications, or
|
||||||
|
for any such Derivative Works as a whole, provided Your use,
|
||||||
|
reproduction, and distribution of the Work otherwise complies with
|
||||||
|
the conditions stated in this License.
|
||||||
|
|
||||||
|
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||||
|
any Contribution intentionally submitted for inclusion in the Work
|
||||||
|
by You to the Licensor shall be under the terms and conditions of
|
||||||
|
this License, without any additional terms or conditions.
|
||||||
|
Notwithstanding the above, nothing herein shall supersede or modify
|
||||||
|
the terms of any separate license agreement you may have executed
|
||||||
|
with Licensor regarding such Contributions.
|
||||||
|
|
||||||
|
6. Trademarks. This License does not grant permission to use the trade
|
||||||
|
names, trademarks, service marks, or product names of the Licensor,
|
||||||
|
except as required for reasonable and customary use in describing the
|
||||||
|
origin of the Work and reproducing the content of the NOTICE file.
|
||||||
|
|
||||||
|
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||||
|
agreed to in writing, Licensor provides the Work (and each
|
||||||
|
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||||
|
implied, including, without limitation, any warranties or conditions
|
||||||
|
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||||
|
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||||
|
appropriateness of using or redistributing the Work and assume any
|
||||||
|
risks associated with Your exercise of permissions under this License.
|
||||||
|
|
||||||
|
8. Limitation of Liability. In no event and under no legal theory,
|
||||||
|
whether in tort (including negligence), contract, or otherwise,
|
||||||
|
unless required by applicable law (such as deliberate and grossly
|
||||||
|
negligent acts) or agreed to in writing, shall any Contributor be
|
||||||
|
liable to You for damages, including any direct, indirect, special,
|
||||||
|
incidental, or consequential damages of any character arising as a
|
||||||
|
result of this License or out of the use or inability to use the
|
||||||
|
Work (including but not limited to damages for loss of goodwill,
|
||||||
|
work stoppage, computer failure or malfunction, or any and all
|
||||||
|
other commercial damages or losses), even if such Contributor
|
||||||
|
has been advised of the possibility of such damages.
|
||||||
|
|
||||||
|
9. Accepting Warranty or Additional Liability. While redistributing
|
||||||
|
the Work or Derivative Works thereof, You may choose to offer,
|
||||||
|
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||||
|
or other liability obligations and/or rights consistent with this
|
||||||
|
License. However, in accepting such obligations, You may act only
|
||||||
|
on Your own behalf and on Your sole responsibility, not on behalf
|
||||||
|
of any other Contributor, and only if You agree to indemnify,
|
||||||
|
defend, and hold each Contributor harmless for any liability
|
||||||
|
incurred by, or claims asserted against, such Contributor by reason
|
||||||
|
of your accepting any such warranty or additional liability.
|
||||||
|
|
||||||
|
END OF TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
APPENDIX: How to apply the Apache License to your work.
|
||||||
|
|
||||||
|
To apply the Apache License to your work, attach the following
|
||||||
|
boilerplate notice, with the fields enclosed by brackets "[]"
|
||||||
|
replaced with your own identifying information. (Don't include
|
||||||
|
the brackets!) The text should be enclosed in the appropriate
|
||||||
|
comment syntax for the file format. We also recommend that a
|
||||||
|
file or class name and description of purpose be included on the
|
||||||
|
same "printed page" as the copyright notice for easier
|
||||||
|
identification within third-party archives.
|
||||||
|
|
||||||
|
Copyright [yyyy] [name of copyright owner]
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
21
keyboards/snagpad/readme.md
Normal file
21
keyboards/snagpad/readme.md
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
# Snagpad
|
||||||
|
QMK for Snagpad
|
||||||
|
|
||||||
|
This PCB can be used as a standard numpad, or a ortho 5x4 macropad.
|
||||||
|
|
||||||
|
For QMK Configurator, the info.json is utilised.
|
||||||
|
- For 2U keys on numpad, the first 1u row/column key assignment is the same as the 2u position.
|
||||||
|
|
||||||
|
Build requires a pro micro.
|
||||||
|
|
||||||
|
Can be built as single PCB with custom case, or as two PCB style with standoffs.
|
||||||
|
|
||||||
|
If you like this simple PCB and want to make a donation, you can at https://paypal.me/theboardpodcast
|
||||||
|
|
||||||
|
Check out our:
|
||||||
|
|
||||||
|
YouTube (https://www.youtube.com/channel/UCg98oJZNffR9nDLJNkorjqw)
|
||||||
|
|
||||||
|
Podcast (www.libsyn.com/theboardpodcast)
|
||||||
|
|
||||||
|
Patreon (www.patreon.com/theboardpodcast)
|
||||||
65
keyboards/snagpad/rules.mk
Normal file
65
keyboards/snagpad/rules.mk
Normal file
@@ -0,0 +1,65 @@
|
|||||||
|
# MCU name
|
||||||
|
MCU = atmega32u4
|
||||||
|
|
||||||
|
# Processor frequency.
|
||||||
|
# This will define a symbol, F_CPU, in all source code files equal to the
|
||||||
|
# processor frequency in Hz. You can then use this symbol in your source code to
|
||||||
|
# calculate timings. Do NOT tack on a 'UL' at the end, this will be done
|
||||||
|
# automatically to create a 32-bit value in your source code.
|
||||||
|
#
|
||||||
|
# This will be an integer division of F_USB below, as it is sourced by
|
||||||
|
# F_USB after it has run through any CPU prescalers. Note that this value
|
||||||
|
# does not *change* the processor frequency - it should merely be updated to
|
||||||
|
# reflect the processor speed set externally so that the code can use accurate
|
||||||
|
# software delays.
|
||||||
|
F_CPU = 16000000
|
||||||
|
|
||||||
|
#
|
||||||
|
# LUFA specific
|
||||||
|
#
|
||||||
|
# Target architecture (see library "Board Types" documentation).
|
||||||
|
ARCH = AVR8
|
||||||
|
|
||||||
|
# Input clock frequency.
|
||||||
|
# This will define a symbol, F_USB, in all source code files equal to the
|
||||||
|
# input clock frequency (before any prescaling is performed) in Hz. This value may
|
||||||
|
# differ from F_CPU if prescaling is used on the latter, and is required as the
|
||||||
|
# raw input clock is fed directly to the PLL sections of the AVR for high speed
|
||||||
|
# clock generation for the USB and other AVR subsections. Do NOT tack on a 'UL'
|
||||||
|
# at the end, this will be done automatically to create a 32-bit value in your
|
||||||
|
# source code.
|
||||||
|
#
|
||||||
|
# If no clock division is performed on the input clock inside the AVR (via the
|
||||||
|
# CPU clock adjust registers or the clock division fuses), this will be equal to F_CPU.
|
||||||
|
F_USB = $(F_CPU)
|
||||||
|
|
||||||
|
# Interrupt driven control endpoint task(+60)
|
||||||
|
OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT
|
||||||
|
|
||||||
|
# Bootloader selection
|
||||||
|
# Teensy halfkay
|
||||||
|
# Pro Micro caterina
|
||||||
|
# Atmel DFU atmel-dfu
|
||||||
|
# LUFA DFU lufa-dfu
|
||||||
|
# QMK DFU qmk-dfu
|
||||||
|
# atmega32a bootloadHID
|
||||||
|
BOOTLOADER = caterina
|
||||||
|
|
||||||
|
# Boot Section Size in *bytes*
|
||||||
|
# OPT_DEFS += -DBOOTLOADER_SIZE=4096
|
||||||
|
|
||||||
|
|
||||||
|
# Build Options
|
||||||
|
# comment out to disable the options.
|
||||||
|
#
|
||||||
|
BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000)
|
||||||
|
MOUSEKEY_ENABLE = yes # Mouse keys(+4700)
|
||||||
|
EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
|
||||||
|
CONSOLE_ENABLE = no # Console for debug(+400)
|
||||||
|
COMMAND_ENABLE = no # Commands for debug and configuration
|
||||||
|
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
||||||
|
NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
|
||||||
|
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
|
||||||
|
AUDIO_ENABLE = no
|
||||||
|
RGBLIGHT_ENABLE = no
|
||||||
|
LAYOUTS = ortho_5x4 numpad_5x4
|
||||||
1
keyboards/snagpad/snagpad.c
Normal file
1
keyboards/snagpad/snagpad.c
Normal file
@@ -0,0 +1 @@
|
|||||||
|
#include "snagpad.h"
|
||||||
30
keyboards/snagpad/snagpad.h
Normal file
30
keyboards/snagpad/snagpad.h
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "quantum.h"
|
||||||
|
|
||||||
|
#define LAYOUT_ortho_5x4( \
|
||||||
|
K00, K01, K02, K03, \
|
||||||
|
K10, K11, K12, K13, \
|
||||||
|
K20, K21, K22, K23, \
|
||||||
|
K30, K31, K32, K33, \
|
||||||
|
K40, K41, K42, K43 \
|
||||||
|
) { \
|
||||||
|
{ K00, K01, K02, K03 }, \
|
||||||
|
{ K10, K11, K12, K13 }, \
|
||||||
|
{ K20, K21, K22, K23 }, \
|
||||||
|
{ K30, K31, K32, K33 }, \
|
||||||
|
{ K40, K41, K42, K43 } \
|
||||||
|
}
|
||||||
|
#define LAYOUT_numpad_5x4( \
|
||||||
|
K00, K01, K02, K03, \
|
||||||
|
K10, K11, K12, \
|
||||||
|
K20, K21, K22, K13, \
|
||||||
|
K30, K31, K32, \
|
||||||
|
K40, K42, K33 \
|
||||||
|
) { \
|
||||||
|
{ K00, K01, K02, K03 }, \
|
||||||
|
{ K10, K11, K12, K13 }, \
|
||||||
|
{ K20, K21, K22, KC_NO }, \
|
||||||
|
{ K30, K31, K32, K33 }, \
|
||||||
|
{ K40, KC_NO, K42, KC_NO } \
|
||||||
|
}
|
||||||
@@ -1,69 +1,35 @@
|
|||||||
#include QMK_KEYBOARD_H
|
#include QMK_KEYBOARD_H
|
||||||
|
#include "kageurufu.h"
|
||||||
#ifdef PROTOCOL_LUFA
|
#ifdef PROTOCOL_LUFA
|
||||||
#include "lufa.h"
|
#include "lufa.h"
|
||||||
#include "split_util.h"
|
#include "split_util.h"
|
||||||
#endif
|
#endif
|
||||||
#ifdef SSD1306OLED
|
|
||||||
#include "common/ssd1306.h"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
extern keymap_config_t keymap_config;
|
extern keymap_config_t keymap_config;
|
||||||
|
|
||||||
#ifdef RGBLIGHT_ENABLE
|
|
||||||
//Following line allows macro to read current RGB settings
|
|
||||||
extern rgblight_config_t rgblight_config;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
extern uint8_t is_master;
|
extern uint8_t is_master;
|
||||||
|
|
||||||
// Each layer gets a name for readability, which is then used in the keymap matrix below.
|
/* Base Layout
|
||||||
// The underscores don't mean anything - you can have a layer called STUFF or any other name.
|
* ,------------------------------------------------. ,------------------------------------------------.
|
||||||
// Layer names don't all need to be of the same length, obviously, and you can also skip them
|
* | ` | | | | | | | | | | | | | | BkSp |
|
||||||
// entirely and just use numbers.
|
* |------+------+------+------+------+------|------| |------|------+------+------+------+------+------|
|
||||||
enum layer_number {
|
* | Tab | | | | | | | | | | | | | | \ |
|
||||||
_QWERTY = 0,
|
* |------+------+------+------+------+------|------| |------|------+------+------+------+------+------|
|
||||||
_COLEMAK,
|
* | Esc | | | | | | | | | | | | | | ' |
|
||||||
_FN,
|
* |------+------+------+------+------+------+------| |------+------+------+------+------+------+------|
|
||||||
_ADJ
|
* | Sft( | | | | | | | | | | | | | | Sft) |
|
||||||
};
|
* |------+------+------+------+------+------+------| |------+------+------+------+------+------+------|
|
||||||
|
* | Ctrl | Win | Win | Alt | FN | Space| RGB | | FN | FN | - | = | Down | PgUp | PgDn |
|
||||||
enum custom_keycodes {
|
* |------+------+------+------+------+------+------| |------+------+------+------+------+------+------|
|
||||||
QWERTY = SAFE_RANGE,
|
* | Space| Bksp | | Enter| Space|
|
||||||
COLEMAK,
|
* `-------------' `--------=----'
|
||||||
FN,
|
*/
|
||||||
ADJ,
|
#define EXPAND_LAYOUT(...) LAYOUT(__VA_ARGS__)
|
||||||
BACKLIT,
|
#define _BASE_LAYOUT( \
|
||||||
RGBRST
|
|
||||||
};
|
|
||||||
|
|
||||||
enum macro_keycodes {
|
|
||||||
KC_SAMPLEMACRO,
|
|
||||||
};
|
|
||||||
|
|
||||||
#define FN_ESC LT(_FN, KC_ESC)
|
|
||||||
|
|
||||||
// Define your non-alpha grouping in this define's LAYOUT, and all your BASE_LAYERS will share the same mod/macro columns
|
|
||||||
/* Base Layout
|
|
||||||
* ,------------------------------------------------. ,------------------------------------------------.
|
|
||||||
* | ` | | | | | | | | | | | | | | BkSp |
|
|
||||||
* |------+------+------+------+------+------|------| |------|------+------+------+------+------+------|
|
|
||||||
* | Tab | | | | | | | | | | | | | | \ |
|
|
||||||
* |------+------+------+------+------+------|------| |------|------+------+------+------+------+------|
|
|
||||||
* | Esc | | | | | | | | | | | | | | ' |
|
|
||||||
* |------+------+------+------+------+------+------| |------+------+------+------+------+------+------|
|
|
||||||
* | Sft( | | | | | | | | | | | | | | Sft) |
|
|
||||||
* |------+------+------+------+------+------+------| |------+------+------+------+------+------+------|
|
|
||||||
* | Ctrl | Win | Win | Alt | FN | Space| RGB | | FN | FN | - | = | Down | PgUp | PgDn |
|
|
||||||
* |------+------+------+------+------+------+------| |------+------+------+------+------+------+------|
|
|
||||||
* | Space| Bksp | | Enter| Space|
|
|
||||||
* `-------------' `--------=----'
|
|
||||||
*/
|
|
||||||
#define BASE_LAYOUT( \
|
|
||||||
_00, _01, _02, _03, _04, _05, _06, _07, _08, _09, \
|
_00, _01, _02, _03, _04, _05, _06, _07, _08, _09, \
|
||||||
_10, _11, _12, _13, _14, _15, _16, _17, _18, _19, \
|
_10, _11, _12, _13, _14, _15, _16, _17, _18, _19, \
|
||||||
_20, _21, _22, _23, _24, _25, _26, _27, _28, _29 \
|
_20, _21, _22, _23, _24, _25, _26, _27, _28, _29 \
|
||||||
) \
|
) \
|
||||||
LAYOUT( \
|
EXPAND_LAYOUT( \
|
||||||
KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, RGB_MOD, KC_EQL, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSPC, \
|
KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, RGB_MOD, KC_EQL, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSPC, \
|
||||||
KC_TAB, _00, _01, _02, _03, _04, KC_LBRC, KC_RBRC, _05, _06, _07, _08, _09, KC_BSLS, \
|
KC_TAB, _00, _01, _02, _03, _04, KC_LBRC, KC_RBRC, _05, _06, _07, _08, _09, KC_BSLS, \
|
||||||
FN_ESC, _10, _11, _12, _13, _14, RGB_SAI, RGB_VAI, _15, _16, _17, _18, _19, KC_QUOT, \
|
FN_ESC, _10, _11, _12, _13, _14, RGB_SAI, RGB_VAI, _15, _16, _17, _18, _19, KC_QUOT, \
|
||||||
@@ -71,265 +37,43 @@ LAYOUT( \
|
|||||||
KC_LCTL, KC_LGUI, KC_LGUI, KC_LALT, FN, KC_SPC, FN, FN, KC_SPC, KC_MINS, KC_EQL, KC_DOWN, KC_PGUP, KC_PGDN, \
|
KC_LCTL, KC_LGUI, KC_LGUI, KC_LALT, FN, KC_SPC, FN, FN, KC_SPC, KC_MINS, KC_EQL, KC_DOWN, KC_PGUP, KC_PGDN, \
|
||||||
KC_VOLD, KC_VOLU, KC_SPC, KC_BSPC, KC_ENT, KC_SPC, KC_VOLD, KC_VOLU \
|
KC_VOLD, KC_VOLU, KC_SPC, KC_BSPC, KC_ENT, KC_SPC, KC_VOLD, KC_VOLU \
|
||||||
)
|
)
|
||||||
|
#define BASE_LAYOUT(...) _BASE_LAYOUT(__VA_ARGS__)
|
||||||
|
|
||||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||||
/* Qwerty
|
|
||||||
* ,------------------------------------------------. ,------------------------------------------------.
|
|
||||||
* | | | | | | | | | | | | | | | |
|
|
||||||
* |------+------+------+------+------+------|------| |------|------+------+------+------+------+------|
|
|
||||||
* | | Q | W | E | R | T | | | | Y | U | I | O | P | |
|
|
||||||
* |------+------+------+------+------+------|------| |------|------+------+------+------+------+------|
|
|
||||||
* | | A | S | D | F | G | | | | H | J | K | L | ; | |
|
|
||||||
* |------+------+------+------+------+------+------| |------+------+------+------+------+------+------|
|
|
||||||
* | | Z | X | C | V | B | | | | N | M | , | . | / | |
|
|
||||||
* |------+------+------+------+------+------+------| |------+------+------+------+------+------+------|
|
|
||||||
* | | | | | | | | | | | | | | | |
|
|
||||||
* |------+------+------+------+------+------+------| |------+------+------+------+------+------+------|
|
|
||||||
* | | | | | |
|
|
||||||
* `-------------' `--------=----'
|
|
||||||
*/
|
|
||||||
[_QWERTY] = BASE_LAYOUT( \
|
[_QWERTY] = BASE_LAYOUT( \
|
||||||
KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, \
|
_________________QWERTY_L1_________________, _________________QWERTY_R1_________________, \
|
||||||
KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, \
|
_________________QWERTY_L2_________________, _________________QWERTY_R2_________________, \
|
||||||
KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH \
|
_________________QWERTY_L3_________________, _________________QWERTY_R3_________________ \
|
||||||
),
|
),
|
||||||
|
|
||||||
/* Colemak
|
|
||||||
* ,------------------------------------------------. ,------------------------------------------------.
|
|
||||||
* | | | | | | | | | | | | | | | |
|
|
||||||
* |------+------+------+------+------+------|------| |------|------+------+------+------+------+------|
|
|
||||||
* | | Q | W | F | P | B | | | | J | L | U | Y | ; | |
|
|
||||||
* |------+------+------+------+------+------|------| |------|------+------+------+------+------+------|
|
|
||||||
* | | A | R | S | T | G | | | | K | N | E | I | O | |
|
|
||||||
* |------+------+------+------+------+------+------| |------+------+------+------+------+------+------|
|
|
||||||
* | | Z | X | C | D | V | [ | | ] | M | H | , | . | / | |
|
|
||||||
* |------+------+------+------+------+------+------| |------+------+------+------+------+------+------|
|
|
||||||
* | | | | | | | | | | | | | | | |
|
|
||||||
* |------+------+------+------+------+------+------| |------+------+------+------+------+------+------|
|
|
||||||
* | | | | | |
|
|
||||||
* `-------------' `--------=----'
|
|
||||||
*/
|
|
||||||
[_COLEMAK] = BASE_LAYOUT( \
|
[_COLEMAK] = BASE_LAYOUT( \
|
||||||
KC_Q, KC_W, KC_F, KC_P, KC_B, KC_J, KC_L, KC_U, KC_Y, KC_SCLN, \
|
_________________COLEMAK_L1________________, _________________COLEMAK_R1________________, \
|
||||||
KC_A, KC_R, KC_S, KC_T, KC_G, KC_K, KC_N, KC_E, KC_I, KC_O, \
|
_________________COLEMAK_L2________________, _________________COLEMAK_R2________________, \
|
||||||
KC_Z, KC_X, KC_C, KC_D, KC_V, KC_M, KC_H, KC_COMM, KC_DOT, KC_SLSH
|
_________________COLEMAK_L3________________, _________________COLEMAK_R3________________ \
|
||||||
),
|
),
|
||||||
|
|
||||||
|
[_COLEMAK_DH] = BASE_LAYOUT( \
|
||||||
|
______________COLEMAK_MOD_DH_L1____________, ______________COLEMAK_MOD_DH_R1____________, \
|
||||||
|
______________COLEMAK_MOD_DH_L2____________, ______________COLEMAK_MOD_DH_R2____________, \
|
||||||
|
______________COLEMAK_MOD_DH_L3____________, ______________COLEMAK_MOD_DH_R3____________ \
|
||||||
|
),
|
||||||
|
|
||||||
/* FN
|
[_FN] = EXPAND_LAYOUT( \
|
||||||
* ,------------------------------------------------. ,------------------------------------------------.
|
________________FUNCTION_L1________________, _______, KC_PSCR, ________________FUNCTION_R1________________, \
|
||||||
* | ~ | ! | @ | # | $ | % | | | | ^ | & | * | ( | ) | |
|
________________FUNCTION_L2________________, _______, _______, ________________FUNCTION_R2________________, \
|
||||||
* |------+------+------+------+------+------|------| |------|------+------+------+------+------+------|
|
________________FUNCTION_L3________________, _______, _______, ________________FUNCTION_R3________________, \
|
||||||
* | ~ | ! | @ | # | $ | % | | | | ^ | & | * | ( | ) | |
|
________________FUNCTION_L4________________, _______, _______, ________________FUNCTION_R4________________, \
|
||||||
* |------+------+------+------+------+------|------| |------|------+------+------+------+------+------|
|
________________FUNCTION_L5________________, ADJ, ADJ, ________________FUNCTION_R5________________, \
|
||||||
* | Ctrl | A | O | E | U | I | | | | D | H | T | N | S | / |
|
KC_VOLD, KC_VOLU, _______, KC_DEL, _______, _______, KC_VOLD, KC_VOLU \
|
||||||
* |------+------+------+------+------+------+------| |------+------+------+------+------+------+------|
|
|
||||||
* | Shift| ; | Q | J | K | X | [ | | ] | B | M | W | V | Z |Enter |
|
|
||||||
* |------+------+------+------+------+------+------| |------+------+------+------+------+------+------|
|
|
||||||
* | ADJ | Esc | Alt | GUI | EISU |Lower |Space | |Space |FN | KANA | Left | Down | Up |Right |
|
|
||||||
* |------+------+------+------+------+------+------| |------+------+------+------+------+------+------|
|
|
||||||
* |Lower |Space | |Space |FN |
|
|
||||||
* `-------------' `------------'
|
|
||||||
*/
|
|
||||||
[_FN] = LAYOUT( \
|
|
||||||
KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, _______, KC_PSCR, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, \
|
|
||||||
_______, KC_PGDN, KC_UP, KC_PGUP, _______, KC_LBRC, _______, _______, KC_RBRC, KC_7, KC_UP, KC_9, KC_0, KC_HOME, \
|
|
||||||
ADJ, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, _______, _______, _______, KC_LEFT, KC_DOWN, KC_RGHT, KC_RBRC, KC_END, \
|
|
||||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_PGDN, KC_PGUP, _______, \
|
|
||||||
_______, _______, _______, _______, ADJ, _______, ADJ, ADJ, ADJ, KC_MPLY, KC_MNXT, KC_MUTE, KC_VOLD, KC_VOLU, \
|
|
||||||
KC_VOLD, KC_VOLU, _______, KC_DEL, _______, _______, KC_VOLD, KC_VOLU \
|
|
||||||
),
|
),
|
||||||
|
|
||||||
/* ADJ
|
[_ADJ] = EXPAND_LAYOUT( \
|
||||||
* ,------------------------------------------------. ,------------------------------------------------.
|
_________________ADJUST_L1_________________, _______, _______, _________________ADJUST_R1_________________, \
|
||||||
* | ~ | ! | @ | # | $ | % | | | | ^ | & | * | ( | ) | |
|
_________________ADJUST_L2_________________, _______, _______, _________________ADJUST_R2_________________, \
|
||||||
* |------+------+------+------+------+------|------| |------|------+------+------+------+------+------|
|
_________________ADJUST_L3_________________, _______, _______, _________________ADJUST_R3_________________, \
|
||||||
* | ~ | ! | @ | # | $ | % | | | | ^ | & | * | ( | ) | |
|
_________________ADJUST_L4_________________, _______, _______, _________________ADJUST_R4_________________, \
|
||||||
* |------+------+------+------+------+------|------| |------|------+------+------+------+------+------|
|
_________________ADJUST_L5_________________, _______, _______, _________________ADJUST_R5_________________, \
|
||||||
* | Ctrl | A | O | E | U | I | | | | D | H | T | N | S | / |
|
|
||||||
* |------+------+------+------+------+------+------| |------+------+------+------+------+------+------|
|
|
||||||
* | Shift| ; | Q | J | K | X | [ | | ] | B | M | W | V | Z |Enter |
|
|
||||||
* |------+------+------+------+------+------+------| |------+------+------+------+------+------+------|
|
|
||||||
* |ADJ| Esc | Alt | GUI | EISU |Lower |Space | |Space |FN | KANA | Left | Down | Up |Right |
|
|
||||||
* |------+------+------+------+------+------+------| |------+------+------+------+------+------+------|
|
|
||||||
* |Lower |Space | |Space |FN |
|
|
||||||
* `-------------' `------------'
|
|
||||||
*/
|
|
||||||
|
|
||||||
[_ADJ] = LAYOUT( \
|
|
||||||
KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, _______, _______, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, \
|
|
||||||
_______, RGB_SAD, RGB_VAI, RGB_SAI, RESET, _______, _______, _______, _______, _______, _______, _______, _______, KC_DEL, \
|
|
||||||
_______, RGB_HUD, RGB_VAD, RGB_HUI, RGBRST, _______, _______, _______, _______, QWERTY, COLEMAK, _______, _______, _______, \
|
|
||||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, RGB_TOG, RGB_HUI, RGB_SAI, RGB_VAI, \
|
|
||||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, RGB_RMOD,RGB_HUD, RGB_SAD, RGB_VAD, \
|
|
||||||
KC_VOLD, KC_VOLU, _______, _______, _______, _______, KC_VOLD, KC_VOLU \
|
KC_VOLD, KC_VOLU, _______, _______, _______, _______, KC_VOLD, KC_VOLU \
|
||||||
)
|
)
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
// define variables for reactive RGB
|
|
||||||
bool TOG_STATUS = false;
|
|
||||||
int RGB_current_mode;
|
|
||||||
|
|
||||||
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
|
||||||
//uint8_t shifted = get_mods() & (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT));
|
|
||||||
|
|
||||||
switch (keycode) {
|
|
||||||
case QWERTY:
|
|
||||||
if (record->event.pressed) {
|
|
||||||
set_single_persistent_default_layer(_QWERTY);
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
break;
|
|
||||||
case COLEMAK:
|
|
||||||
if(record->event.pressed) {
|
|
||||||
set_single_persistent_default_layer(_COLEMAK);
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
break;
|
|
||||||
case FN:
|
|
||||||
if (record->event.pressed) {
|
|
||||||
layer_on(_FN);
|
|
||||||
} else {
|
|
||||||
layer_off(_FN);
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
break;
|
|
||||||
case ADJ:
|
|
||||||
if (record->event.pressed) {
|
|
||||||
layer_on(_ADJ);
|
|
||||||
} else {
|
|
||||||
layer_off(_ADJ);
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
break;
|
|
||||||
//led operations - RGB mode change now updates the RGB_current_mode to allow the right RGB mode to be set after reactive keys are released
|
|
||||||
case RGBRST:
|
|
||||||
#ifdef RGBLIGHT_ENABLE
|
|
||||||
if (record->event.pressed) {
|
|
||||||
eeconfig_update_rgblight_default();
|
|
||||||
rgblight_enable();
|
|
||||||
RGB_current_mode = rgblight_config.mode;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
void matrix_init_user(void) {
|
|
||||||
#ifdef RGBLIGHT_ENABLE
|
|
||||||
RGB_current_mode = rgblight_config.mode;
|
|
||||||
#endif
|
|
||||||
//SSD1306 OLED init, make sure to add #define SSD1306OLED in config.h
|
|
||||||
#ifdef SSD1306OLED
|
|
||||||
iota_gfx_init(!has_usb()); // turns on the display
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
void matrix_scan_user(void) {
|
|
||||||
#ifdef SSD1306OLED
|
|
||||||
led_test_init();
|
|
||||||
iota_gfx_task(); // this is what updates the display continuously
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
//SSD1306 OLED update loop, make sure to add #define SSD1306OLED in config.h
|
|
||||||
#ifdef SSD1306OLED
|
|
||||||
|
|
||||||
// hook point for 'led_test' keymap
|
|
||||||
// 'default' keymap's led_test_init() is empty function, do nothing
|
|
||||||
// 'led_test' keymap's led_test_init() force rgblight_mode_noeeprom(35);
|
|
||||||
__attribute__ ((weak))
|
|
||||||
void led_test_init(void) {}
|
|
||||||
|
|
||||||
void matrix_update(struct CharacterMatrix *dest,
|
|
||||||
const struct CharacterMatrix *source) {
|
|
||||||
if (memcmp(dest->display, source->display, sizeof(dest->display))) {
|
|
||||||
memcpy(dest->display, source->display, sizeof(dest->display));
|
|
||||||
dest->dirty = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
//assign the right code to your layers for OLED display
|
|
||||||
#define L_BASE 0
|
|
||||||
#define L_FN (1<<_FN)
|
|
||||||
#define L_ADJ (1<<_ADJ)
|
|
||||||
#define L_ADJ_TRI (L_ADJ|L_FN)
|
|
||||||
|
|
||||||
static void render_logo(struct CharacterMatrix *matrix) {
|
|
||||||
|
|
||||||
static char logo[]={
|
|
||||||
0x80,0x81,0x82,0x83,0x84,0x85,0x86,0x87,0x88,0x89,0x8a,0x8b,0x8c,0x8d,0x8e,0x8f,0x90,0x91,0x92,0x93,0x94,
|
|
||||||
0xa0,0xa1,0xa2,0xa3,0xa4,0xa5,0xa6,0xa7,0xa8,0xa9,0xaa,0xab,0xac,0xad,0xae,0xaf,0xb0,0xb1,0xb2,0xb3,0xb4,
|
|
||||||
0xc0,0xc1,0xc2,0xc3,0xc4,0xc5,0xc6,0xc7,0xc8,0xc9,0xca,0xcb,0xcc,0xcd,0xce,0xcf,0xd0,0xd1,0xd2,0xd3,0xd4,
|
|
||||||
0};
|
|
||||||
matrix_write(matrix, logo);
|
|
||||||
//matrix_write_P(&matrix, PSTR(" Split keyboard kit"));
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
void render_status(struct CharacterMatrix *matrix) {
|
|
||||||
|
|
||||||
// Render to mode icon
|
|
||||||
static char logo[][2][3]={{{0x95,0x96,0},{0xb5,0xb6,0}},{{0x97,0x98,0},{0xb7,0xb8,0}}};
|
|
||||||
if(keymap_config.swap_lalt_lgui==false){
|
|
||||||
matrix_write(matrix, logo[0][0]);
|
|
||||||
matrix_write_P(matrix, PSTR("\n"));
|
|
||||||
matrix_write(matrix, logo[0][1]);
|
|
||||||
}else{
|
|
||||||
matrix_write(matrix, logo[1][0]);
|
|
||||||
matrix_write_P(matrix, PSTR("\n"));
|
|
||||||
matrix_write(matrix, logo[1][1]);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Define layers here, Have not worked out how to have text displayed for each layer. Copy down the number you see and add a case for it below
|
|
||||||
char buf[40];
|
|
||||||
snprintf(buf,sizeof(buf), "Undef-%ld", layer_state);
|
|
||||||
matrix_write_P(matrix, PSTR("\nLayer: "));
|
|
||||||
switch (layer_state) {
|
|
||||||
case L_BASE:
|
|
||||||
matrix_write_P(matrix, PSTR("Default"));
|
|
||||||
break;
|
|
||||||
case L_FN:
|
|
||||||
matrix_write_P(matrix, PSTR("FN"));
|
|
||||||
break;
|
|
||||||
case L_ADJ:
|
|
||||||
case L_ADJ_TRI:
|
|
||||||
matrix_write_P(matrix, PSTR("ADJ"));
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
matrix_write(matrix, buf);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Host Keyboard LED Status
|
|
||||||
char led[40];
|
|
||||||
snprintf(led, sizeof(led), "\n%s %s %s",
|
|
||||||
(host_keyboard_leds() & (1<<USB_LED_NUM_LOCK)) ? "NUMLOCK" : " ",
|
|
||||||
(host_keyboard_leds() & (1<<USB_LED_CAPS_LOCK)) ? "CAPS" : " ",
|
|
||||||
(host_keyboard_leds() & (1<<USB_LED_SCROLL_LOCK)) ? "SCLK" : " ");
|
|
||||||
matrix_write(matrix, led);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void iota_gfx_task_user(void) {
|
|
||||||
struct CharacterMatrix matrix;
|
|
||||||
|
|
||||||
#if DEBUG_TO_SCREEN
|
|
||||||
if (debug_enable) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
matrix_clear(&matrix);
|
|
||||||
if(is_master){
|
|
||||||
render_status(&matrix);
|
|
||||||
}else{
|
|
||||||
render_logo(&matrix);
|
|
||||||
}
|
|
||||||
matrix_update(&display, &matrix);
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|||||||
@@ -1,47 +0,0 @@
|
|||||||
# KageUrufu's Sol Layout
|
|
||||||
|
|
||||||
Read the keymap for the layout, I don't want to deal with maintained ascii art
|
|
||||||
|
|
||||||
## Customize
|
|
||||||
|
|
||||||
see `qmk_firmware/keyboards/sol/rev1/keymaps/default/rules.mk`
|
|
||||||
|
|
||||||
```
|
|
||||||
# Variables you can set for SOL
|
|
||||||
|
|
||||||
BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000)
|
|
||||||
MOUSEKEY_ENABLE = no # Mouse keys(+4700)
|
|
||||||
EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
|
|
||||||
CONSOLE_ENABLE = yes # Console for debug(+400)
|
|
||||||
COMMAND_ENABLE = yes # Commands for debug and configuration
|
|
||||||
NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
|
|
||||||
RGBLIGHT_ENABLE = yes # Enable global lighting effects. Do not enable with RGB Matrix
|
|
||||||
LED_ANIMATIONS = yes # LED animations
|
|
||||||
LED_MIRRORED = no # Mirror LEDs across halves (enable DIP 1 on slave, and DIP 2 and 3 on master)
|
|
||||||
RGB_MATRIX_ENABLE = no # Enable per-key coordinate based RGB effects. Do not enable with RGBlight (+8500)
|
|
||||||
RGB_MATRIX_KEYPRESSES = no # Enable reactive per-key effects. Can be very laggy (+1500)
|
|
||||||
RGBLIGHT_FULL_POWER = no # Allow maximum RGB brightness. Otherwise, limited to a safe level for a normal USB-A port
|
|
||||||
UNICODE_ENABLE = no # Unicode
|
|
||||||
SWAP_HANDS_ENABLE = no # Enable one-hand typing
|
|
||||||
ENCODER_ENABLE_CUSTOM = yes # Enable rotary encoder (+90)
|
|
||||||
|
|
||||||
OLED_ENABLE = no # OLED_ENABLE (+5000)
|
|
||||||
IOS_DEVICE_ENABLE = no # Limit max brightness to connect to IOS device (iPad,iPhone)
|
|
||||||
|
|
||||||
```
|
|
||||||
## Compile
|
|
||||||
|
|
||||||
go to qmk top directory.
|
|
||||||
```
|
|
||||||
$ cd qmk_firmware
|
|
||||||
```
|
|
||||||
|
|
||||||
build
|
|
||||||
```
|
|
||||||
$ make sol:default
|
|
||||||
```
|
|
||||||
|
|
||||||
After the initial flash with AVRdudess, you should be able to flash using this:
|
|
||||||
```
|
|
||||||
$ make sol:default:dfu
|
|
||||||
```
|
|
||||||
@@ -52,19 +52,14 @@ OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT
|
|||||||
# the appropriate keymap folder that will get included automatically
|
# the appropriate keymap folder that will get included automatically
|
||||||
#
|
#
|
||||||
BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000)
|
BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000)
|
||||||
MOUSEKEY_ENABLE = no # Mouse keys(+4700)
|
MOUSEKEY_ENABLE = yes # Mouse keys(+4700)
|
||||||
EXTRAKEY_ENABLE = no # Audio control and System control(+450)
|
EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
|
||||||
CONSOLE_ENABLE = no # Console for debug(+400)
|
CONSOLE_ENABLE = no # Console for debug(+400)
|
||||||
COMMAND_ENABLE = no # Commands for debug and configuration
|
COMMAND_ENABLE = yes # Commands for debug and configuration
|
||||||
NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
|
NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
|
||||||
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
|
|
||||||
MIDI_ENABLE = no # MIDI controls
|
|
||||||
AUDIO_ENABLE = no # Audio output on port C6
|
|
||||||
UNICODE_ENABLE = no # Unicode
|
UNICODE_ENABLE = no # Unicode
|
||||||
BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
|
BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
|
||||||
RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight. Do not enable this with audio at the same time.
|
RGBLIGHT_ENABLE = yes # Enable WS2812 RGB underlight. Do not enable this with audio at the same time.
|
||||||
# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
|
|
||||||
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
|
||||||
|
|
||||||
CUSTOM_MATRIX = yes
|
CUSTOM_MATRIX = yes
|
||||||
|
|
||||||
|
|||||||
@@ -87,10 +87,13 @@ bool process_record_keymap(uint16_t keycode, keyrecord_t *record) {
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
void matrix_init_keymap(void) {
|
|
||||||
DDRD &= ~(1<<5);
|
|
||||||
PORTD &= ~(1<<5);
|
|
||||||
|
|
||||||
DDRB &= ~(1<<0);
|
void matrix_init_keymap(void) {
|
||||||
PORTB &= ~(1<<0);
|
#ifndef CONVERT_TO_PROTON_C
|
||||||
|
setPinOutput(D5);
|
||||||
|
writePinHigh(D5);
|
||||||
|
|
||||||
|
setPinOutput(B0);
|
||||||
|
writePinHigh(B0);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2018 'mechmerlin'
|
Copyright 2018 westfoxtrot
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify
|
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
|
it under the terms of the GNU General Public License as published by
|
||||||
@@ -20,12 +20,12 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||||||
#include "config_common.h"
|
#include "config_common.h"
|
||||||
|
|
||||||
/* USB Device descriptor parameter */
|
/* USB Device descriptor parameter */
|
||||||
#define VENDOR_ID 0xFEED
|
#define VENDOR_ID 0x21FF
|
||||||
#define PRODUCT_ID 0x0000
|
#define PRODUCT_ID 0x0A66
|
||||||
#define DEVICE_VER 0x0001
|
#define DEVICE_VER 0x0001
|
||||||
#define MANUFACTURER You
|
#define MANUFACTURER westfoxtrot
|
||||||
#define PRODUCT cyclops
|
#define PRODUCT cyclops
|
||||||
#define DESCRIPTION A custom 66% keyboard
|
#define DESCRIPTION AEK66
|
||||||
|
|
||||||
/* key matrix size */
|
/* key matrix size */
|
||||||
#define MATRIX_ROWS 5
|
#define MATRIX_ROWS 5
|
||||||
@@ -187,9 +187,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||||||
/*
|
/*
|
||||||
#define LCD_LINES 2 //< number of visible lines of the display
|
#define LCD_LINES 2 //< number of visible lines of the display
|
||||||
#define LCD_DISP_LENGTH 16 //< visibles characters per line of the display
|
#define LCD_DISP_LENGTH 16 //< visibles characters per line of the display
|
||||||
|
|
||||||
#define LCD_IO_MODE 1 //< 0: memory mapped mode, 1: IO port mode
|
#define LCD_IO_MODE 1 //< 0: memory mapped mode, 1: IO port mode
|
||||||
|
|
||||||
#if LCD_IO_MODE
|
#if LCD_IO_MODE
|
||||||
#define LCD_PORT PORTB //< port for the LCD lines
|
#define LCD_PORT PORTB //< port for the LCD lines
|
||||||
#define LCD_DATA0_PORT LCD_PORT //< port for 4bit data bit 0
|
#define LCD_DATA0_PORT LCD_PORT //< port for 4bit data bit 0
|
||||||
@@ -211,4 +209,4 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||||||
|
|
||||||
/* Bootmagic Lite key configuration */
|
/* Bootmagic Lite key configuration */
|
||||||
// #define BOOTMAGIC_LITE_ROW 0
|
// #define BOOTMAGIC_LITE_ROW 0
|
||||||
// #define BOOTMAGIC_LITE_COLUMN 0
|
// #define BOOTMAGIC_LITE_COLUMN 0
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
/* Copyright 2018 'mechmerlin'
|
/* Copyright 2018 westfoxtrot
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
@@ -40,4 +40,4 @@ void led_set_kb(uint8_t usb_led) {
|
|||||||
// put your keyboard LED indicator (ex: Caps Lock LED) toggling code here
|
// put your keyboard LED indicator (ex: Caps Lock LED) toggling code here
|
||||||
|
|
||||||
led_set_user(usb_led);
|
led_set_user(usb_led);
|
||||||
}
|
}
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
/* Copyright 2018 'mechmerlin'
|
/* Copyright 2018 westfoxtrot
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
@@ -9,4 +9,4 @@
|
|||||||
"layout": [{"label":"~", "x":0, "y":0}, {"label":"!", "x":1, "y":0}, {"label":"@", "x":2, "y":0}, {"label":"#", "x":3, "y":0}, {"label":"$", "x":4, "y":0}, {"label":"%", "x":5, "y":0}, {"label":"^", "x":6, "y":0}, {"label":"&", "x":7, "y":0}, {"label":"*", "x":8, "y":0}, {"label":"(", "x":9, "y":0}, {"label":")", "x":10, "y":0}, {"label":"_", "x":11, "y":0}, {"label":"+", "x":12, "y":0}, {"label":"Backspace", "x":13, "y":0, "w":2}, {"label":"Page Up", "x":15.5, "y":0}, {"label":"Tab", "x":0, "y":1, "w":1.5}, {"label":"Q", "x":1.5, "y":1}, {"label":"W", "x":2.5, "y":1}, {"label":"E", "x":3.5, "y":1}, {"label":"R", "x":4.5, "y":1}, {"label":"T", "x":5.5, "y":1}, {"label":"Y", "x":6.5, "y":1}, {"label":"U", "x":7.5, "y":1}, {"label":"I", "x":8.5, "y":1}, {"label":"O", "x":9.5, "y":1}, {"label":"P", "x":10.5, "y":1}, {"label":"{", "x":11.5, "y":1}, {"label":"}", "x":12.5, "y":1}, {"label":"Enter", "x":13.75, "y":1, "w":1.25, "h":2}, {"label":"Page Down", "x":15.5, "y":1}, {"label":"Caps Lock", "x":0, "y":2, "w":1.75}, {"label":"A", "x":1.75, "y":2}, {"label":"S", "x":2.75, "y":2}, {"label":"D", "x":3.75, "y":2}, {"label":"F", "x":4.75, "y":2}, {"label":"G", "x":5.75, "y":2}, {"label":"H", "x":6.75, "y":2}, {"label":"J", "x":7.75, "y":2}, {"label":"K", "x":8.75, "y":2}, {"label":"L", "x":9.75, "y":2}, {"label":":", "x":10.75, "y":2}, {"label":"\"", "x":11.75, "y":2}, {"label":"~", "x":12.75, "y":2}, {"label":"Shift", "x":0, "y":3, "w":1.5}, {"label":"|", "x":1.5, "y":3}, {"label":"Z", "x":2.5, "y":3}, {"label":"X", "x":3.5, "y":3}, {"label":"C", "x":4.5, "y":3}, {"label":"V", "x":5.5, "y":3}, {"label":"B", "x":6.5, "y":3}, {"label":"N", "x":7.5, "y":3}, {"label":"M", "x":8.5, "y":3}, {"label":"<", "x":9.5, "y":3}, {"label":">", "x":10.5, "y":3}, {"label":"?", "x":11.5, "y":3}, {"x":12.5, "y":3}, {"label":"Shift", "x":13.5, "y":3}, {"label":"\u2191", "x":14.5, "y":3}, {"label":"Ctrl", "x":0, "y":4, "w":1.5}, {"label":"Win", "x":1.5, "y":4, "w":1.25}, {"label":"Alt", "x":2.75, "y":4, "w":1.5}, {"x":4.25, "y":4, "w":6.5}, {"label":"Alt", "x":10.75, "y":4, "w":1.5}, {"label":"Ctrl", "x":12.25, "y":4, "w":1.25}, {"label":"\u2190", "x":13.5, "y":4}, {"label":"\u2193", "x":14.5, "y":4}, {"label":"\u2192", "x":15.5, "y":4}]
|
"layout": [{"label":"~", "x":0, "y":0}, {"label":"!", "x":1, "y":0}, {"label":"@", "x":2, "y":0}, {"label":"#", "x":3, "y":0}, {"label":"$", "x":4, "y":0}, {"label":"%", "x":5, "y":0}, {"label":"^", "x":6, "y":0}, {"label":"&", "x":7, "y":0}, {"label":"*", "x":8, "y":0}, {"label":"(", "x":9, "y":0}, {"label":")", "x":10, "y":0}, {"label":"_", "x":11, "y":0}, {"label":"+", "x":12, "y":0}, {"label":"Backspace", "x":13, "y":0, "w":2}, {"label":"Page Up", "x":15.5, "y":0}, {"label":"Tab", "x":0, "y":1, "w":1.5}, {"label":"Q", "x":1.5, "y":1}, {"label":"W", "x":2.5, "y":1}, {"label":"E", "x":3.5, "y":1}, {"label":"R", "x":4.5, "y":1}, {"label":"T", "x":5.5, "y":1}, {"label":"Y", "x":6.5, "y":1}, {"label":"U", "x":7.5, "y":1}, {"label":"I", "x":8.5, "y":1}, {"label":"O", "x":9.5, "y":1}, {"label":"P", "x":10.5, "y":1}, {"label":"{", "x":11.5, "y":1}, {"label":"}", "x":12.5, "y":1}, {"label":"Enter", "x":13.75, "y":1, "w":1.25, "h":2}, {"label":"Page Down", "x":15.5, "y":1}, {"label":"Caps Lock", "x":0, "y":2, "w":1.75}, {"label":"A", "x":1.75, "y":2}, {"label":"S", "x":2.75, "y":2}, {"label":"D", "x":3.75, "y":2}, {"label":"F", "x":4.75, "y":2}, {"label":"G", "x":5.75, "y":2}, {"label":"H", "x":6.75, "y":2}, {"label":"J", "x":7.75, "y":2}, {"label":"K", "x":8.75, "y":2}, {"label":"L", "x":9.75, "y":2}, {"label":":", "x":10.75, "y":2}, {"label":"\"", "x":11.75, "y":2}, {"label":"~", "x":12.75, "y":2}, {"label":"Shift", "x":0, "y":3, "w":1.5}, {"label":"|", "x":1.5, "y":3}, {"label":"Z", "x":2.5, "y":3}, {"label":"X", "x":3.5, "y":3}, {"label":"C", "x":4.5, "y":3}, {"label":"V", "x":5.5, "y":3}, {"label":"B", "x":6.5, "y":3}, {"label":"N", "x":7.5, "y":3}, {"label":"M", "x":8.5, "y":3}, {"label":"<", "x":9.5, "y":3}, {"label":">", "x":10.5, "y":3}, {"label":"?", "x":11.5, "y":3}, {"x":12.5, "y":3}, {"label":"Shift", "x":13.5, "y":3}, {"label":"\u2191", "x":14.5, "y":3}, {"label":"Ctrl", "x":0, "y":4, "w":1.5}, {"label":"Win", "x":1.5, "y":4, "w":1.25}, {"label":"Alt", "x":2.75, "y":4, "w":1.5}, {"x":4.25, "y":4, "w":6.5}, {"label":"Alt", "x":10.75, "y":4, "w":1.5}, {"label":"Ctrl", "x":12.25, "y":4, "w":1.25}, {"label":"\u2190", "x":13.5, "y":4}, {"label":"\u2193", "x":14.5, "y":4}, {"label":"\u2192", "x":15.5, "y":4}]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
53
keyboards/westfoxtrot/cyclops/keymaps/default/keymap.c
Normal file
53
keyboards/westfoxtrot/cyclops/keymaps/default/keymap.c
Normal file
@@ -0,0 +1,53 @@
|
|||||||
|
/* Copyright 2018 westfoxtrot
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
|
||||||
|
|
||||||
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||||
|
|
||||||
|
// Default layer
|
||||||
|
[0] = LAYOUT(
|
||||||
|
KC_ESC, 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_PGDN,
|
||||||
|
KC_LCTL, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_NUHS, KC_ENT,
|
||||||
|
KC_LSFT, KC_NUBS, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_NO, KC_RSFT, KC_UP,
|
||||||
|
KC_CAPS, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(1), KC_LEFT, KC_DOWN, KC_RGHT),
|
||||||
|
|
||||||
|
// Fn1 Layer
|
||||||
|
[1] = LAYOUT(
|
||||||
|
KC_GRV, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F11, KC_DEL, KC_HOME,
|
||||||
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_END,
|
||||||
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_ENT,
|
||||||
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
||||||
|
RESET, _______, _______, _______, _______, _______, _______, _______, _______),
|
||||||
|
};
|
||||||
|
|
||||||
|
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
void matrix_init_user(void) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void matrix_scan_user(void) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void led_set_user(uint8_t usb_led) {
|
||||||
|
|
||||||
|
}
|
||||||
@@ -1,13 +1,15 @@
|
|||||||
# Cyclops
|
# cyclops
|
||||||
|
|
||||||
66% Alps Keyboard in ISO layout.
|

|
||||||
|
|
||||||
Keyboard Maintainer: [MechMerlin](https://github.com/mechmerlin)
|
66% Alps Keyboard in ISO layout.
|
||||||
Hardware Supported: 66% Alps Keyboard
|
|
||||||
Hardware Availability: A very limited number were made.
|
Keyboard Maintainer: [westfoxtrot](https://github.com/westfoxtrot)
|
||||||
|
Hardware Supported: Cyclops (AEKISO66) PCB
|
||||||
|
Hardware Availability: Files released here (https://github.com/westfoxtrot/Cyclops)
|
||||||
|
|
||||||
Make example for this keyboard (after setting up your build environment):
|
Make example for this keyboard (after setting up your build environment):
|
||||||
|
|
||||||
make cyclops:default
|
make westfoxtrot/cyclops:default
|
||||||
|
|
||||||
See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).
|
See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).
|
||||||
@@ -62,14 +62,14 @@ BOOTLOADER = atmel-dfu
|
|||||||
# change yes to no to disable
|
# change yes to no to disable
|
||||||
#
|
#
|
||||||
BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000)
|
BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000)
|
||||||
MOUSEKEY_ENABLE = yes # Mouse keys(+4700)
|
MOUSEKEY_ENABLE = no # Mouse keys(+4700)
|
||||||
EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
|
EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
|
||||||
CONSOLE_ENABLE = yes # Console for debug(+400)
|
CONSOLE_ENABLE = no # Console for debug(+400)
|
||||||
COMMAND_ENABLE = yes # Commands for debug and configuration
|
COMMAND_ENABLE = no # Commands for debug and configuration
|
||||||
# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
|
# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
|
||||||
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
||||||
# if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
|
# if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
|
||||||
NKRO_ENABLE = no # USB Nkey Rollover
|
NKRO_ENABLE = yes # USB Nkey Rollover
|
||||||
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default
|
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default
|
||||||
RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow
|
RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow
|
||||||
MIDI_ENABLE = no # MIDI support (+2400 to 4200, depending on config)
|
MIDI_ENABLE = no # MIDI support (+2400 to 4200, depending on config)
|
||||||
@@ -77,4 +77,4 @@ UNICODE_ENABLE = no # Unicode
|
|||||||
BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
|
BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
|
||||||
AUDIO_ENABLE = no # Audio output on port C6
|
AUDIO_ENABLE = no # Audio output on port C6
|
||||||
FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches
|
FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches
|
||||||
HD44780_ENABLE = no # Enable support for HD44780 based LCDs (+400)
|
HD44780_ENABLE = no # Enable support for HD44780 based LCDs (+400)
|
||||||
@@ -31,7 +31,7 @@ static const uint8_t led_mask[] = {
|
|||||||
0xFF, 0x00, /* C6-1 -> C6-16 */
|
0xFF, 0x00, /* C6-1 -> C6-16 */
|
||||||
0xFF, 0x00, /* C7-1 -> C7-16 */
|
0xFF, 0x00, /* C7-1 -> C7-16 */
|
||||||
0xFF, 0x00, /* C8-1 -> C8-16 */
|
0xFF, 0x00, /* C8-1 -> C8-16 */
|
||||||
0xFE, 0x00, /* C9-1 -> C9-16 */
|
0xFF, 0x00, /* C9-1 -> C9-16 */
|
||||||
};
|
};
|
||||||
|
|
||||||
// The address of the LED
|
// The address of the LED
|
||||||
|
|||||||
@@ -27,9 +27,6 @@
|
|||||||
//Tap Dancing
|
//Tap Dancing
|
||||||
#define TAPPING_TERM 200
|
#define TAPPING_TERM 200
|
||||||
|
|
||||||
// Alt gr
|
|
||||||
#define DE_ALGR KC_RALT
|
|
||||||
|
|
||||||
// normal characters
|
// normal characters
|
||||||
#define DE_Z KC_Y
|
#define DE_Z KC_Y
|
||||||
#define DE_Y KC_Z
|
#define DE_Y KC_Z
|
||||||
|
|||||||
29
keyboards/zeal60/keymaps/crd/config.h
Normal file
29
keyboards/zeal60/keymaps/crd/config.h
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
#pragma once
|
||||||
|
|
||||||
|
/* enable/disable LEDs based on layout */
|
||||||
|
#undef RGB_BACKLIGHT_USE_SPLIT_BACKSPACE
|
||||||
|
#define RGB_BACKLIGHT_USE_SPLIT_BACKSPACE 0
|
||||||
|
|
||||||
|
#undef RGB_BACKLIGHT_USE_SPLIT_LEFT_SHIFT
|
||||||
|
#define RGB_BACKLIGHT_USE_SPLIT_LEFT_SHIFT 0
|
||||||
|
|
||||||
|
#undef RGB_BACKLIGHT_USE_SPLIT_RIGHT_SHIFT
|
||||||
|
#define RGB_BACKLIGHT_USE_SPLIT_RIGHT_SHIFT 1
|
||||||
|
|
||||||
|
#undef RGB_BACKLIGHT_USE_7U_SPACEBAR
|
||||||
|
#define RGB_BACKLIGHT_USE_7U_SPACEBAR 1
|
||||||
|
|
||||||
|
#undef RGB_BACKLIGHT_USE_ISO_ENTER
|
||||||
|
#define RGB_BACKLIGHT_USE_ISO_ENTER 0
|
||||||
|
|
||||||
|
#undef RGB_BACKLIGHT_DISABLE_HHKB_BLOCKER_LEDS
|
||||||
|
#define RGB_BACKLIGHT_DISABLE_HHKB_BLOCKER_LEDS 0
|
||||||
|
|
||||||
|
#undef RGB_BACKLIGHT_DISABLE_WHEN_USB_SUSPENDED
|
||||||
|
#define RGB_BACKLIGHT_DISABLE_WHEN_USB_SUSPENDED 1
|
||||||
|
|
||||||
|
#undef RGB_BACKLIGHT_DISABLE_AFTER_TIMEOUT
|
||||||
|
#define RGB_BACKLIGHT_DISABLE_AFTER_TIMEOUT 3
|
||||||
|
|
||||||
|
#undef RGB_BACKLIGHT_EFFECT
|
||||||
|
#define RGB_BACKLIGHT_EFFECT 0
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user