diff options
author | su8044 <58837515+su8044@users.noreply.github.com> | 2020-03-07 04:53:05 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-07 01:53:05 -0800 |
commit | d7ba0ad684a18c07952963427ca89a8e8e7e1903 (patch) | |
tree | 727ece6dd0525a19be938d342df882f71c67ab62 /keyboards/handwired/myskeeb/config.h | |
parent | c4d8e5692837e8c0377d9111b37308f55cf3edba (diff) | |
download | qmk_firmware-d7ba0ad684a18c07952963427ca89a8e8e7e1903.tar.gz qmk_firmware-d7ba0ad684a18c07952963427ca89a8e8e7e1903.zip |
[Keyboard] Handwired Skeeb Keyboard (#8161)
* adding Handwired Skeeb Keyboard
* Apply suggestions from fauxpark
* Apply more suggestions from fauxpark and small change to layout
* Apply more suggestions from noroadsleft and last tap dance
Diffstat (limited to 'keyboards/handwired/myskeeb/config.h')
-rw-r--r-- | keyboards/handwired/myskeeb/config.h | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/keyboards/handwired/myskeeb/config.h b/keyboards/handwired/myskeeb/config.h new file mode 100644 index 0000000000..227a96f9f1 --- /dev/null +++ b/keyboards/handwired/myskeeb/config.h @@ -0,0 +1,47 @@ +#pragma once + +#include "config_common.h" + +/* USB Device Descriptor Parameter */ +#define VENDOR_ID 0xFEED +#define PRODUCT_ID 0x6060 +#define DEVICE_VER 0x0100 +#define MANUFACTURER DAG3 +#define PRODUCT MySKeeb +#define DESCRIPTION Custom Split Keyboard + +// Key Matrix Size // +// Rows are Doubled-up +#define MATRIX_ROWS 10 +#define MATRIX_COLS 7 + +// Wiring of Each Half +#define DIODE_DIRECTION COL2ROW +#define MATRIX_ROW_PINS { C6, D7, E6, B4, B5 } +#define MATRIX_COL_PINS { B6, B2, B3, B1, F6, F7, F5 } +#define MATRIX_COL_PINS_RIGHT { F5, B3, F7, B1, F6, B2, B6 } + +// Comunication and Split Detection + +#define USE_SERIAL +#define SOFT_SERIAL_PIN D3 +#define SELECT_SOFT_SERIAL_SPEED 1 +#define SPLIT_USB_DETECT +#define EE_HANDS +#define SPLIT_USB_TIMEOUT 1000 + +// OLED Display Config + +#define OLED_DISPLAY_128X64 +#define OLED_FONT_HEIGHT 8 +#define OLED_FONT_WIDTH 6 +#define OLED_FONT_H "skeeb_font.c" + +// Tap Dance + +#define TAPPING_TERM 200 + +// Other + +#define DEBOUNCE 0 + |