diff options
author | walkerstop <walkerstop@gmail.com> | 2019-01-25 16:57:15 -0700 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-01-25 15:57:15 -0800 |
commit | 1d3b9eea940908d02b6c2deda5d744a73cd838da (patch) | |
tree | 3cd3e2e328bf432e3a27dd5e5893b306780d324c /keyboards/wheatfield/blocked65/config.h | |
parent | 2e8b32b9b5434c6cee011ef953f3ad3ec8a099e7 (diff) | |
download | qmk_firmware-1d3b9eea940908d02b6c2deda5d744a73cd838da.tar.gz qmk_firmware-1d3b9eea940908d02b6c2deda5d744a73cd838da.zip |
[Keyboard] Support for Wheat Field Peripherals blocked 65% PCB (#4763)
* Basic Fanoe support (no LED yet)
* Enable RGB lights
* Backlighting support
* Change to reflect Wheat Field brand of Fanoe PCB
* Hot swap variant
* Fix review comment issues
* Fix review issues
* Corrected rules.mk
* Change naming to avoid using possibly copyrighted names
* Added info.json
* Corrected manufacturer name in info.json
* Keymap updates
* Add layout for use with ws2812b and such
* Fixes based on code review
Diffstat (limited to 'keyboards/wheatfield/blocked65/config.h')
-rwxr-xr-x | keyboards/wheatfield/blocked65/config.h | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/keyboards/wheatfield/blocked65/config.h b/keyboards/wheatfield/blocked65/config.h new file mode 100755 index 0000000000..36ec18f147 --- /dev/null +++ b/keyboards/wheatfield/blocked65/config.h @@ -0,0 +1,53 @@ +#pragma once + +#include "config_common.h" + +/* USB Device descriptor parameter */ +#define VENDOR_ID 0xFEED +#define PRODUCT_ID 0x6060 +#define DEVICE_VER 0x0001 +#define MANUFACTURER Dou +#define PRODUCT Blocked65 +#define DESCRIPTION 65% keyboard with arrow cluster blocker + +/* key matrix size */ +#define MATRIX_ROWS 5 +#define MATRIX_COLS 15 + +/* key matrix pins */ +#define MATRIX_ROW_PINS { B0, B1, B2, B3, B7 } +#define MATRIX_COL_PINS { D0, D1, D2, D3, D5, D4, D6, D7, B4, F7, F6, F5, F4, F1, F0 } +#define UNUSED_PINS + +/* COL2ROW or ROW2COL */ +#define DIODE_DIRECTION ROW2COL + +/* number of backlight levels */ + +#define BACKLIGHT_PIN B6 + +#ifdef BACKLIGHT_PIN +#define BACKLIGHT_LEVELS 6 +#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)) \ +) + +#define RGB_DI_PIN E2 +#define RGBLIGHT_ANIMATIONS +#define RGBLED_NUM 2 +#define RGBLIGHT_HUE_STEP 8 +#define RGBLIGHT_SAT_STEP 8 +#define RGBLIGHT_VAL_STEP 8 + |