diff options
Diffstat (limited to 'keyboards/ramonimbao/squishytkl')
-rw-r--r-- | keyboards/ramonimbao/squishytkl/chconf.h | 24 | ||||
-rw-r--r-- | keyboards/ramonimbao/squishytkl/config.h | 165 | ||||
-rw-r--r-- | keyboards/ramonimbao/squishytkl/halconf.h | 23 | ||||
-rw-r--r-- | keyboards/ramonimbao/squishytkl/info.json | 411 | ||||
-rw-r--r-- | keyboards/ramonimbao/squishytkl/keymaps/default/keymap.c | 35 | ||||
-rw-r--r-- | keyboards/ramonimbao/squishytkl/keymaps/default/readme.md | 3 | ||||
-rw-r--r-- | keyboards/ramonimbao/squishytkl/keymaps/iso/keymap.c | 35 | ||||
-rw-r--r-- | keyboards/ramonimbao/squishytkl/keymaps/jis/keymap.c | 37 | ||||
-rw-r--r-- | keyboards/ramonimbao/squishytkl/keymaps/via/config.h | 25 | ||||
-rw-r--r-- | keyboards/ramonimbao/squishytkl/keymaps/via/keymap.c | 64 | ||||
-rw-r--r-- | keyboards/ramonimbao/squishytkl/keymaps/via/rules.mk | 1 | ||||
-rw-r--r-- | keyboards/ramonimbao/squishytkl/mcuconf.h | 24 | ||||
-rw-r--r-- | keyboards/ramonimbao/squishytkl/readme.md | 18 | ||||
-rw-r--r-- | keyboards/ramonimbao/squishytkl/rules.mk | 26 | ||||
-rw-r--r-- | keyboards/ramonimbao/squishytkl/squishytkl.c | 17 | ||||
-rw-r--r-- | keyboards/ramonimbao/squishytkl/squishytkl.h | 135 |
16 files changed, 1043 insertions, 0 deletions
diff --git a/keyboards/ramonimbao/squishytkl/chconf.h b/keyboards/ramonimbao/squishytkl/chconf.h new file mode 100644 index 0000000000..ce018f56a7 --- /dev/null +++ b/keyboards/ramonimbao/squishytkl/chconf.h @@ -0,0 +1,24 @@ +/* Copyright 2020 QMK + * + * 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 + +#define CH_CFG_ST_TIMEDELTA 0 + +#define CH_CFG_USE_CONDVARS_TIMEOUT FALSE + +#include_next <chconf.h> diff --git a/keyboards/ramonimbao/squishytkl/config.h b/keyboards/ramonimbao/squishytkl/config.h new file mode 100644 index 0000000000..3e0812bb12 --- /dev/null +++ b/keyboards/ramonimbao/squishytkl/config.h @@ -0,0 +1,165 @@ +/* +Copyright 2021 Ramon Imbao + +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 + +#include "config_common.h" + +/* USB Device descriptor parameter */ +#define VENDOR_ID 0xB16B +#define PRODUCT_ID 0x00B1 +#define DEVICE_VER 0xE500 +#define MANUFACTURER Ramon Imbao +#define PRODUCT SquishyTKL + +/* key matrix size */ +#define MATRIX_ROWS 14 +#define MATRIX_COLS 26 + +/* + * Keyboard Matrix Assignments + * + * Change this to how you wired your keyboard + * COLS: AVR pins used for columns, left to right + * ROWS: AVR pins used for rows, top to bottom + * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode) + * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode) + * + */ +#define MATRIX_ROW_PINS { B3, B4, B5, C13, B9, B8, A0, A1, A9, A8, B11, A6, A5, C0 } +#define MATRIX_COL_PINS { A15, C10, C11, C12, D2, A7, C4, C5, B0, B1, B2, B10, B12, B13, B14, B15, C6, C9, C7, C8, A10, A4, C14, A3, A2, C3 } + +#define UNUSED_PINS + +/* COL2ROW, ROW2COL */ +#define DIODE_DIRECTION COL2ROW + +/* + * Split Keyboard specific options, make sure you have 'SPLIT_KEYBOARD = yes' in your rules.mk, and define SOFT_SERIAL_PIN. + */ +#define SOFT_SERIAL_PIN D0 // or D1, D2, D3, E6 + +//#define LED_NUM_LOCK_PIN B0 +//#define LED_CAPS_LOCK_PIN B1 +//#define LED_SCROLL_LOCK_PIN B2 +//#define LED_COMPOSE_PIN B3 +//#define LED_KANA_PIN B4 + +//#define BACKLIGHT_PIN B7 +//#define BACKLIGHT_LEVELS 3 +//#define BACKLIGHT_BREATHING + +#define RGB_DI_PIN C15 +#ifdef RGB_DI_PIN +# define RGBLED_NUM 16 +//# define RGBLIGHT_HUE_STEP 8 +//# define RGBLIGHT_SAT_STEP 8 +//# define RGBLIGHT_VAL_STEP 8 +//# define RGBLIGHT_LIMIT_VAL 255 /* The maximum brightness level */ +//# define RGBLIGHT_SLEEP /* If defined, the RGB lighting will be switched off when the host goes to sleep */ +/*== all animations enable ==*/ +# define RGBLIGHT_ANIMATIONS +/*== or choose animations ==*/ +//# define RGBLIGHT_EFFECT_BREATHING +//# define RGBLIGHT_EFFECT_RAINBOW_MOOD +//# define RGBLIGHT_EFFECT_RAINBOW_SWIRL +//# define RGBLIGHT_EFFECT_SNAKE +//# define RGBLIGHT_EFFECT_KNIGHT +//# define RGBLIGHT_EFFECT_CHRISTMAS +//# define RGBLIGHT_EFFECT_STATIC_GRADIENT +//# define RGBLIGHT_EFFECT_RGB_TEST +//# define RGBLIGHT_EFFECT_ALTERNATING +/*== customize breathing effect ==*/ +/*==== (DEFAULT) use fixed table instead of exp() and sin() ====*/ +//# define RGBLIGHT_BREATHE_TABLE_SIZE 256 // 256(default) or 128 or 64 +/*==== use exp() and sin() ====*/ +//# define RGBLIGHT_EFFECT_BREATHE_CENTER 1.85 // 1 to 2.7 +//# define RGBLIGHT_EFFECT_BREATHE_MAX 255 // 0 to 255 +#endif + +/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ +#define DEBOUNCE 5 + +/* define if matrix has ghost (lacks anti-ghosting diodes) */ +//#define MATRIX_HAS_GHOST + +/* 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 + +/* If defined, GRAVE_ESC will always act as ESC when CTRL is held. + * This is useful for the Windows task manager shortcut (ctrl+shift+esc). + */ +//#define GRAVE_ESC_CTRL_OVERRIDE + +/* + * Force NKRO + * + * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved + * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the + * makefile for this to work.) + * + * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N) + * until the next keyboard reset. + * + * NKRO may prevent your keystrokes from being detected in the BIOS, but it is + * fully operational during normal computer usage. + * + * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N) + * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by + * bootmagic, NKRO mode will always be enabled until it is toggled again during a + * power-up. + * + */ +//#define FORCE_NKRO + +/* + * Feature disable options + * These options are also useful to firmware size reduction. + */ + +/* disable debug print */ +//#define NO_DEBUG + +/* disable print */ +//#define NO_PRINT + +/* disable action features */ +//#define NO_ACTION_LAYER +//#define NO_ACTION_TAPPING +//#define NO_ACTION_ONESHOT + +/* disable these deprecated features by default */ +#define NO_ACTION_MACRO +#define NO_ACTION_FUNCTION + +/* Bootmagic Lite key configuration */ +//#define BOOTMAGIC_LITE_ROW 0 +//#define BOOTMAGIC_LITE_COLUMN 0 + +/* QoL improvements */ +#define PERMISSIVE_HOLD +#define IGNORE_MOD_TAP_INTERRUPT + +/* Rotary encoder */ +#define ENCODERS_PAD_A { B6 } +#define ENCODERS_PAD_B { B7 } + +#define ENCODER_RESOLUTION 1 + +//#define ENCODER_DIRECTION_FLIP diff --git a/keyboards/ramonimbao/squishytkl/halconf.h b/keyboards/ramonimbao/squishytkl/halconf.h new file mode 100644 index 0000000000..344e66379f --- /dev/null +++ b/keyboards/ramonimbao/squishytkl/halconf.h @@ -0,0 +1,23 @@ +/* Copyright 2020 QMK + * + * 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 + +#define HAL_USE_PWM TRUE + +#include_next <halconf.h> + + diff --git a/keyboards/ramonimbao/squishytkl/info.json b/keyboards/ramonimbao/squishytkl/info.json new file mode 100644 index 0000000000..f845e2bedd --- /dev/null +++ b/keyboards/ramonimbao/squishytkl/info.json @@ -0,0 +1,411 @@ +{ + "keyboard_name": "SquishyTKL", + "url": "", + "maintainer": "Ramon Imbao", + "width": 19.5, + "height": 6.25, + "layouts": { + "LAYOUT_ansi": { + "layout": [ + {"x":0, "y":0.5}, + {"x":1.25, "y":0.5}, + {"x":2.25, "y":0.5}, + {"x":3.25, "y":0.5}, + {"x":4.25, "y":0.5}, + {"x":5.5, "y":0.5}, + {"x":6.5, "y":0.5}, + {"x":7.5, "y":0.5}, + {"x":8.5, "y":0.5}, + {"x":9.75, "y":0.5}, + {"x":10.75, "y":0.5}, + {"x":11.75, "y":0.5}, + {"x":12.75, "y":0.5}, + {"x":14, "y":0.5}, + {"x":15.25, "y":0.5}, + {"x":16.25, "y":0.5}, + {"x":17.25, "y":0.5}, + + {"x":0, "y":1.75}, + {"x":1, "y":1.75}, + {"x":2, "y":1.75}, + {"x":3, "y":1.75}, + {"x":4, "y":1.75}, + {"x":5, "y":1.75}, + {"x":6, "y":1.75}, + {"x":7, "y":1.75}, + {"x":8, "y":1.75}, + {"x":9, "y":1.75}, + {"x":10, "y":1.75}, + {"x":11, "y":1.75}, + {"x":12, "y":1.75}, + {"x":13, "y":1.75, "w":2}, + {"x":15.25, "y":1.75}, + {"x":16.25, "y":1.75}, + {"x":17.25, "y":1.75}, + + {"x":0, "y":2.75, "w":1.5}, + {"x":1.5, "y":2.75}, + {"x":2.5, "y":2.75}, + {"x":3.5, "y":2.75}, + {"x":4.5, "y":2.75}, + {"x":5.5, "y":2.75}, + {"x":6.5, "y":2.75}, + {"x":7.5, "y":2.75}, + {"x":8.5, "y":2.75}, + {"x":9.5, "y":2.75}, + {"x":10.5, "y":2.75}, + {"x":11.5, "y":2.75}, + {"x":12.5, "y":2.75}, + {"x":13.5, "y":2.75, "w":1.5}, + {"x":15.25, "y":2.75}, + {"x":16.25, "y":2.75}, + {"x":17.25, "y":2.75}, + + {"x":0, "y":3.75, "w":1.75}, + {"x":1.75, "y":3.75}, + {"x":2.75, "y":3.75}, + {"x":3.75, "y":3.75}, + {"x":4.75, "y":3.75}, + {"x":5.75, "y":3.75}, + {"x":6.75, "y":3.75}, + {"x":7.75, "y":3.75}, + {"x":8.75, "y":3.75}, + {"x":9.75, "y":3.75}, + {"x":10.75, "y":3.75}, + {"x":11.75, "y":3.75}, + {"x":12.75, "y":3.75, "w":2.25}, + + {"x":0, "y":4.75, "w":2.25}, + {"x":2.25, "y":4.75}, + {"x":3.25, "y":4.75}, + {"x":4.25, "y":4.75}, + {"x":5.25, "y":4.75}, + {"x":6.25, "y":4.75}, + {"x":7.25, "y":4.75}, + {"x":8.25, "y":4.75}, + {"x":9.25, "y":4.75}, + {"x":10.25, "y":4.75}, + {"x":11.25, "y":4.75}, + {"x":12.25, "y":4.75, "w":2.75}, + {"x":16.25, "y":4.75}, + + {"x":0, "y":5.75, "w":1.25}, + {"x":1.25, "y":5.75, "w":1.25}, + {"x":2.5, "y":5.75, "w":1.25}, + {"x":3.75, "y":5.75, "w":6.25}, + {"x":10, "y":5.75, "w":1.25}, + {"x":11.25, "y":5.75, "w":1.25}, + {"x":12.5, "y":5.75, "w":1.25}, + {"x":13.75, "y":5.75, "w":1.25}, + {"x":15.25, "y":5.75}, + {"x":16.25, "y":5.75}, + {"x":17.25, "y":5.75} + ] + }, + "LAYOUT_iso": { + "layout": [ + {"x":0, "y":0.5}, + {"x":1.25, "y":0.5}, + {"x":2.25, "y":0.5}, + {"x":3.25, "y":0.5}, + {"x":4.25, "y":0.5}, + {"x":5.5, "y":0.5}, + {"x":6.5, "y":0.5}, + {"x":7.5, "y":0.5}, + {"x":8.5, "y":0.5}, + {"x":9.75, "y":0.5}, + {"x":10.75, "y":0.5}, + {"x":11.75, "y":0.5}, + {"x":12.75, "y":0.5}, + {"x":14, "y":0.5}, + {"x":15.25, "y":0.5}, + {"x":16.25, "y":0.5}, + {"x":17.25, "y":0.5}, + + {"x":0, "y":1.75}, + {"x":1, "y":1.75}, + {"x":2, "y":1.75}, + {"x":3, "y":1.75}, + {"x":4, "y":1.75}, + {"x":5, "y":1.75}, + {"x":6, "y":1.75}, + {"x":7, "y":1.75}, + {"x":8, "y":1.75}, + {"x":9, "y":1.75}, + {"x":10, "y":1.75}, + {"x":11, "y":1.75}, + {"x":12, "y":1.75}, + {"x":13, "y":1.75, "w":2}, + {"x":15.25, "y":1.75}, + {"x":16.25, "y":1.75}, + {"x":17.25, "y":1.75}, + + {"x":0, "y":2.75, "w":1.5}, + {"x":1.5, "y":2.75}, + {"x":2.5, "y":2.75}, + {"x":3.5, "y":2.75}, + {"x":4.5, "y":2.75}, + {"x":5.5, "y":2.75}, + {"x":6.5, "y":2.75}, + {"x":7.5, "y":2.75}, + {"x":8.5, "y":2.75}, + {"x":9.5, "y":2.75}, + {"x":10.5, "y":2.75}, + {"x":11.5, "y":2.75}, + {"x":12.5, "y":2.75}, + {"x":15.25, "y":2.75}, + {"x":16.25, "y":2.75}, + {"x":17.25, "y":2.75}, + + {"x":0, "y":3.75, "w":1.75}, + {"x":1.75, "y":3.75}, + {"x":2.75, "y":3.75}, + {"x":3.75, "y":3.75}, + {"x":4.75, "y":3.75}, + {"x":5.75, "y":3.75}, + {"x":6.75, "y":3.75}, + {"x":7.75, "y":3.75}, + {"x":8.75, "y":3.75}, + {"x":9.75, "y":3.75}, + {"x":10.75, "y":3.75}, + {"x":11.75, "y":3.75}, + {"x":12.75, "y":3.75}, + {"x":13.75, "y":2.75, "w":1.25, "h":2}, + + {"x":0, "y":4.75, "w":1.25}, + {"x":1.25, "y":4.75}, + {"x":2.25, "y":4.75}, + {"x":3.25, "y":4.75}, + {"x":4.25, "y":4.75}, + {"x":5.25, "y":4.75}, + {"x":6.25, "y":4.75}, + {"x":7.25, "y":4.75}, + {"x":8.25, "y":4.75}, + {"x":9.25, "y":4.75}, + {"x":10.25, "y":4.75}, + {"x":11.25, "y":4.75}, + {"x":12.25, "y":4.75, "w":2.75}, + {"x":16.25, "y":4.75}, + + {"x":0, "y":5.75, "w":1.25}, + {"x":1.25, "y":5.75, "w":1.25}, + {"x":2.5, "y":5.75, "w":1.25}, + {"x":3.75, "y":5.75, "w":6.25}, + {"x":10, "y":5.75, "w":1.25}, + {"x":11.25, "y":5.75, "w":1.25}, + {"x":12.5, "y":5.75, "w":1.25}, + {"x":13.75, "y":5.75, "w":1.25}, + {"x":15.25, "y":5.75}, + {"x":16.25, "y":5.75}, + {"x":17.25, "y":5.75} + ] + }, + "LAYOUT_jis": { + "layout": [ + {"x":0, "y":0}, + {"x":1.25, "y":0}, + {"x":2.25, "y":0}, + {"x":3.25, "y":0}, + {"x":4.25, "y":0}, + {"x":5.5, "y":0}, + {"x":6.5, "y":0}, + {"x":7.5, "y":0}, + {"x":8.5, "y":0}, + {"x":9.75, "y":0}, + {"x":10.75, "y":0}, + {"x":11.75, "y":0}, + {"x":12.75, "y":0}, + {"x":14, "y":0}, + {"x":15.25, "y":0}, + {"x":16.25, "y":0}, + {"x":17.25, "y":0}, + + {"x":0, "y":1.25}, + {"x":1, "y":1.25}, + {"x":2, "y":1.25}, + {"x":3, "y":1.25}, + {"x":4, "y":1.25}, + {"x":5, "y":1.25}, + {"x":6, "y":1.25}, + {"x":7, "y":1.25}, + {"x":8, "y":1.25}, + {"x":9, "y":1.25}, + {"x":10, "y":1.25}, + {"x":11, "y":1.25}, + {"x":12, "y":1.25}, + {"x":13, "y":1.25}, + {"x":14, "y":1.25}, + {"x":15.25, "y":1.25}, + {"x":16.25, "y":1.25}, + {"x":17.25, "y":1.25}, + + {"x":0, "y":2.25, "w":1.5}, + {"x":1.5, "y":2.25}, + {"x":2.5, "y":2.25}, + {"x":3.5, "y":2.25}, + {"x":4.5, "y":2.25}, + {"x":5.5, "y":2.25}, + {"x":6.5, "y":2.25}, + {"x":7.5, "y":2.25}, + {"x":8.5, "y":2.25}, + {"x":9.5, "y":2.25}, + {"x":10.5, "y":2.25}, + {"x":11.5, "y":2.25}, + {"x":12.5, "y":2.25}, + {"x":15.25, "y":2.25}, + {"x":16.25, "y":2.25}, + {"x":17.25, "y":2.25}, + + {"x":0, "y":3.25, "w":1.75}, + {"x":1.75, "y":3.25}, + {"x":2.75, "y":3.25}, + {"x":3.75, "y":3.25}, + {"x":4.75, "y":3.25}, + {"x":5.75, "y":3.25}, + {"x":6.75, "y":3.25}, + {"x":7.75, "y":3.25}, + {"x":8.75, "y":3.25}, + {"x":9.75, "y":3.25}, + {"x":10.75, "y":3.25}, + {"x":11.75, "y":3.25}, + {"x":12.75, "y":3.25}, + {"x":13.75, "y":2.25, "w":1.25, "h":2}, + + {"x":0, "y":4.25, "w":2.25}, + {"x":2.25, "y":4.25}, + {"x":3.25, "y":4.25}, + {"x":4.25, "y":4.25}, + {"x":5.25, "y":4.25}, + {"x":6.25, "y":4.25}, + {"x":7.25, "y":4.25}, + {"x":8.25, "y":4.25}, + {"x":9.25, "y":4.25}, + {"x":10.25, "y":4.25}, + {"x":11.25, "y":4.25}, + {"x":12.25, "y":4.25}, + {"x":13.25, "y":4.25, "w":1.75}, + {"x":16.25, "y":4.25}, + + {"x":0, "y":5.25, "w":1.5}, + {"x":1.5, "y":5.25}, + {"x":2.5, "y":5.25, "w":1.5}, + {"x":4, "y":5.25}, + {"x":5, "y":5.25}, + {"x":6, "y":5.25, "w":3}, + {"x":9, "y":5.25}, + {"x":10, "y":5.25}, + {"x":11, "y":5.25, "w":1.5}, + {"x":12.5, "y":5.25}, + {"x":13.5, "y":5.25, "w":1.5}, + {"x":15.25, "y":5.25}, + {"x":16.25, "y":5.25}, + {"x":17.25, "y":5.25} + ] + }, + "LAYOUT_all": { + "layout": [ + {"x":0, "y":0.5}, + {"x":1.25, "y":0.5}, + {"x":2.25, "y":0.5}, + {"x":3.25, "y":0.5}, + {"x":4.25, "y":0.5}, + {"x":5.5, "y":0.5}, + {"x":6.5, "y":0.5}, + {"x":7.5, "y":0.5}, + {"x":8.5, "y":0.5}, + {"x":9.75, "y":0.5}, + {"x":10.75, "y":0.5}, + {"x":11.75, "y":0.5}, + {"x":12.75, "y":0.5}, + {"x":14, "y":0.5}, + {"x":15.25, "y":0.5}, + {"x":16.25, "y":0.5}, + {"x":17.25, "y":0.5}, + + {"x":0, "y":1.75}, + {"x":1, "y":1.75}, + {"x":2, "y":1.75}, + {"x":3, "y":1.75}, + {"x":4, "y":1.75}, + {"x":5, "y":1.75}, + {"x":6, "y":1.75}, + {"x":7, "y":1.75}, + {"x":8, "y":1.75}, + {"x":9, "y":1.75}, + {"x":10, "y":1.75}, + {"x":11, "y":1.75}, + {"x":12, "y":1.75}, + {"x":13, "y":1.75}, + {"x":14, "y":1.75}, + {"x":15.25, "y":1.75}, + {"x":16.25, "y":1.75}, + {"x":17.25, "y":1.75}, + + {"x":0, "y":2.75, "w":1.5}, + {"x":1.5, "y":2.75}, + {"x":2.5, "y":2.75}, + {"x":3.5, "y":2.75}, + {"x":4.5, "y":2.75}, + {"x":5.5, "y":2.75}, + {"x":6.5, "y":2.75}, + {"x":7.5, "y":2.75}, + {"x":8.5, "y":2.75}, + {"x":9.5, "y":2.75}, + {"x":10.5, "y":2.75}, + {"x":11.5, "y":2.75}, + {"x":12.5, "y":2.75}, + {"x":13.5, "y":2.75, "w":1.5}, + {"x":15.25, "y":2.75}, + {"x":16.25, "y":2.75}, + {"x":17.25, "y":2.75}, + + {"x":0, "y":3.75, "w":1.75}, + {"x":1.75, "y":3.75}, + {"x":2.75, "y":3.75}, + {"x":3.75, "y":3.75}, + {"x":4.75, "y":3.75}, + {"x":5.75, "y":3.75}, + {"x":6.75, "y":3.75}, + {"x":7.75, "y":3.75}, + {"x":8.75, "y":3.75}, + {"x":9.75, "y":3.75}, + {"x":10.75, "y":3.75}, + {"x":11.75, "y":3.75}, + {"x":12.75, "y":3.75, "w":2.25}, + + {"x":0, "y":4.75, "w":1.25}, + {"x":1.25, "y":4.75}, + {"x":2.25, "y":4.75}, + {"x":3.25, "y":4.75}, + {"x":4.25, "y":4.75}, + {"x":5.25, "y":4.75}, + {"x":6.25, "y":4.75}, + {"x":7.25, "y":4.75}, + {"x":8.25, "y":4.75}, + {"x":9.25, "y":4.75}, + {"x":10.25, "y":4.75}, + {"x":11.25, "y":4.75}, + {"x":12.25, "y":4.75, "w":1.75}, + {"x":14, "y":4.75}, + {"x":16.25, "y":4.75}, + + {"x":0, "y":5.75, "w":1.25}, + {"x":1.25, "y":5.75, "w":1.25}, + {"x":2.5, "y":5.75, "w":1.25}, + {"x":3.75, "y":5.75, "w":2.5}, + {"x":6.25, "y":5.75}, + {"x":7.25, "y":5.75, "w":2.75}, + {"x":10, "y":5.75, "w":1.25}, + {"x":11.25, "y":5.75, "w":1.25}, + {"x":12.5, "y":5.75, "w":1.25}, + {"x":13.75, "y":5.75, "w":1.25}, + {"x":15.25, "y":5.75}, + {"x":16.25, "y":5.75}, + {"x":17.25, "y":5.75}, + + {"x":18.5, "y":0}, + {"x":18.5, "y":1} + ] + } + } +} diff --git a/keyboards/ramonimbao/squishytkl/keymaps/default/keymap.c b/keyboards/ramonimbao/squishytkl/keymaps/default/keymap.c new file mode 100644 index 0000000000..c55c4aed68 --- /dev/null +++ b/keyboards/ramonimbao/squishytkl/keymaps/default/keymap.c @@ -0,0 +1,35 @@ +/* Copyright 2021 Ramon Imbao + * + * 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] = { + [0] = LAYOUT_ansi( + 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_MUTE, 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_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, KC_ENT, + KC_LSFT, 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_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RGUI, KC_MENU, KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT + ) +}; + +void encoder_update_user(uint8_t index, bool clockwise) { + if (clockwise) { + tap_code(KC_VOLU); + } else { + tap_code(KC_VOLD); + } +} diff --git a/keyboards/ramonimbao/squishytkl/keymaps/default/readme.md b/keyboards/ramonimbao/squishytkl/keymaps/default/readme.md new file mode 100644 index 0000000000..b20cf74361 --- /dev/null +++ b/keyboards/ramonimbao/squishytkl/keymaps/default/readme.md @@ -0,0 +1,3 @@ +# The default keymap for SquishyTKL + +ANSI, 6.25u bottom row diff --git a/keyboards/ramonimbao/squishytkl/keymaps/iso/keymap.c b/keyboards/ramonimbao/squishytkl/keymaps/iso/keymap.c new file mode 100644 index 0000000000..4caf9e8b5b --- /dev/null +++ b/keyboards/ramonimbao/squishytkl/keymaps/iso/keymap.c @@ -0,0 +1,35 @@ +/* Copyright 2021 Ramon Imbao + * + * 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] = { + [0] = LAYOUT_iso( + 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_MUTE, 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_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_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, 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_RSFT, KC_UP, + KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RGUI, KC_MENU, KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT + ) +}; + +void encoder_update_user(uint8_t index, bool clockwise) { + if (clockwise) { + tap_code(KC_VOLU); + } else { + tap_code(KC_VOLD); + } +} diff --git a/keyboards/ramonimbao/squishytkl/keymaps/jis/keymap.c b/keyboards/ramonimbao/squishytkl/keymaps/jis/keymap.c new file mode 100644 index 0000000000..dc0d1d5bad --- /dev/null +++ b/keyboards/ramonimbao/squishytkl/keymaps/jis/keymap.c @@ -0,0 +1,37 @@ +/* Copyright 2021 Ramon Imbao + * + * 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" + +const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { + [0] = LAYOUT_jis( + 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_MUTE, KC_PSCR, KC_SLCK, KC_PAUS, + JP_ZHTG, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, JP_MINS, JP_CIRC, JP_YEN, 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, JP_AT, JP_LBRC, 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, JP_SCLN, JP_COLN, JP_RBRC, KC_ENT, + KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, JP_COMM, JP_DOT, JP_SLSH, JP_BSLS, KC_RSFT, KC_UP, + KC_LCTL, KC_LGUI, KC_LALT, KC_MENU, JP_MHEN, KC_SPC, JP_HENK, JP_KANA, KC_RALT, KC_RGUI, KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT + ) +}; + +void encoder_update_user(uint8_t index, bool clockwise) { + if (clockwise) { + tap_code(KC_VOLU); + } else { + tap_code(KC_VOLD); + } +} diff --git a/keyboards/ramonimbao/squishytkl/keymaps/via/config.h b/keyboards/ramonimbao/squishytkl/keymaps/via/config.h new file mode 100644 index 0000000000..884fbd4871 --- /dev/null +++ b/keyboards/ramonimbao/squishytkl/keymaps/via/config.h @@ -0,0 +1,25 @@ +/* +Copyright 2021 Ramon Imbao + +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 + +#define DYNAMIC_KEYMAP_LAYER_COUNT 1 +// Only way to get this to compile is to reduce layer count to 1. +// Do TKL users even need more than 1 layer? +// I'd like that option though. Below also works. +// #define DYNAMIC_KEYMAP_LAYER_COUNT 2 +// #define DYNAMIC_KEYMAP_EEPROM_MAX_ADDR 2047 diff --git a/keyboards/ramonimbao/squishytkl/keymaps/via/keymap.c b/keyboards/ramonimbao/squishytkl/keymaps/via/keymap.c new file mode 100644 index 0000000000..fa7214149e --- /dev/null +++ b/keyboards/ramonimbao/squishytkl/keymaps/via/keymap.c @@ -0,0 +1,64 @@ +/* Copyright 2021 Ramon Imbao + * + * 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] = { + [0] = 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_MUTE, 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, KC_ENT, + KC_LSFT, KC_NO, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_NO, KC_UP, + KC_LCTL, KC_LGUI, KC_LALT, KC_NO, KC_NO, KC_SPC, KC_NO, KC_RALT, KC_RGUI, KC_MENU, KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT, + KC_VOLU, KC_VOLD + ), +}; + +keyevent_t encoder_ccw = { + .key = (keypos_t){.row = 13, .col = 0}, + .pressed = false +}; + +keyevent_t encoder_cw = { + .key = (keypos_t){.row = 13, .col = 1}, + .pressed = false +}; + +void matrix_scan_user(void) { + if (IS_PRESSED(encoder_ccw)) { + encoder_ccw.pressed = false; + encoder_ccw.time = (timer_read() | 1); + action_exec(encoder_ccw); + } + + if (IS_PRESSED(encoder_cw)) { + encoder_cw.pressed = false; + encoder_cw.time = (timer_read() | 1); + action_exec(encoder_cw); + } +} + |