aboutsummaryrefslogtreecommitdiff
path: root/keyboards/pistachio/rev2
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/pistachio/rev2')
-rw-r--r--keyboards/pistachio/rev2/config.h71
-rw-r--r--keyboards/pistachio/rev2/readme.md17
-rw-r--r--keyboards/pistachio/rev2/rev2.c19
-rw-r--r--keyboards/pistachio/rev2/rev2.h58
-rw-r--r--keyboards/pistachio/rev2/rules.mk23
5 files changed, 188 insertions, 0 deletions
diff --git a/keyboards/pistachio/rev2/config.h b/keyboards/pistachio/rev2/config.h
new file mode 100644
index 000000000..d0de29854
--- /dev/null
+++ b/keyboards/pistachio/rev2/config.h
@@ -0,0 +1,71 @@
1/*
2Copyright 2020 rate
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17
18#pragma once
19
20/*
21 * Keyboard Matrix Assignments
22 *
23 * Change this to how you wired your keyboard
24 * COLS: AVR pins used for columns, left to right
25 * ROWS: AVR pins used for rows, top to bottom
26 * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode)
27 * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode)
28 *
29 */
30#define MATRIX_ROW_PINS { B5, B4, E6, D7, C6, D4 }
31#define MATRIX_COL_PINS { B6, B2, B3, B1, F7, F6, F5, F4, D3}
32#define UNUSED_PINS
33
34#define USE_I2C
35
36/* COL2ROW, ROW2COL */
37#define DIODE_DIRECTION COL2ROW
38
39/* Split hand configration */
40#define SPLIT_HAND_MATRIX_GRID D4,D3
41
42/* ws2812 RGB LED */
43#define RGB_DI_PIN D2
44#define RGBLIGHT_SPLIT
45#define RGBLED_SPLIT { 38, 46 }
46#define RGBLED_NUM 84
47#define RGBLIGHT_LIMIT_VAL 195
48#define RGBLIGHT_LAYERS
49#define RGBLIGHT_HUE_STEP 10
50#define RGBLIGHT_SAT_STEP 17
51
52#if defined(RGBLIGHT_ENABLE) && !defined(IOS_DEVICE_ENABLE)
53 #define USB_MAX_POWER_CONSUMPTION 400
54#else
55 #define USB_MAX_POWER_CONSUMPTION 100
56#endif
57
58/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
59#define DEBOUNCE 5
60
61/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
62#define LOCKING_SUPPORT_ENABLE
63/* Locking resynchronize hack */
64#define LOCKING_RESYNC_ENABLE
65
66/* nKey Rollover */
67#define FORCE_NKRO
68
69/* disable these deprecated features by default */
70#define NO_ACTION_MACRO
71#define NO_ACTION_FUNCTION
diff --git a/keyboards/pistachio/rev2/readme.md b/keyboards/pistachio/rev2/readme.md
new file mode 100644
index 000000000..12d9f6598
--- /dev/null
+++ b/keyboards/pistachio/rev2/readme.md
@@ -0,0 +1,17 @@
1# pistachio Rev2
2
3![pistachio](https://ratelog.net/wp-content/uploads/2021/05/s-IMG_1835.jpg)
4
5This is a 92-key split keyboard with JIS layout and spare keys.
6
7* Keyboard Maintainer: [rate](https://github.com/7-rate) [@7_rate](https://twitter.com/7_rate)
8* Hardware Supported: pistachio PCB Rev2, Pro Micro, Backlight
9* Hardware Availability: [PCB & Case Data](https://github.com/7-rate/Pistachio), [Booth Shop](https://rates.booth.pm/items/2237334)
10
11Make example for this keyboard (after setting up your build environment):
12
13 make pistachio/rev2:default
14
15See 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).
16
17[Build guide](https://ratelog.net/pistachio-build-guide/) \ No newline at end of file
diff --git a/keyboards/pistachio/rev2/rev2.c b/keyboards/pistachio/rev2/rev2.c
new file mode 100644
index 000000000..c6e64a526
--- /dev/null
+++ b/keyboards/pistachio/rev2/rev2.c
@@ -0,0 +1,19 @@
1/*
2Copyright 2020 rate
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17
18
19#include "rev2.h"
diff --git a/keyboards/pistachio/rev2/rev2.h b/keyboards/pistachio/rev2/rev2.h
new file mode 100644
index 000000000..750778a30
--- /dev/null
+++ b/keyboards/pistachio/rev2/rev2.h
@@ -0,0 +1,58 @@
1/*
2Copyright 2020 rate
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17
18#pragma once
19
20#include "quantum.h"
21
22/*
23 * ,------------------------------------------------- ---------------------------------------------------------.
24 * | | L00 | | L01 | L02 | L03 | L04 | | L05 | | R00 | R01 | R02 | R03 | | R04 | R05 | R06 | R07 | |
25 * |-------------------------------------- ---------- ---------------------------------------------------------+
26 * | L10 || L11 | L12 | L13 | L14 | L15 | L16 | L17 | | R10 | R11 | R12 | R13 | R14 | R15 | R16 | R17 || R18 |
27 * |------------------------------------------------- ---------------------------------------------------------+
28 * | L20 || L21 | L22 | L23 | L24 | L25 | L26 | | R20 | R21 | R22 | R23 | R24 | R25 | R26 | R27 || R28 |
29 * |--------------------------------------------- ------------------------------------------- ------+
30 * | L30 || L31 | L32 | L33 | L34 | L35 | L36 | | R30 | R31 | R32 | R33 | R34 | R35 | R36 | || R37 |
31 * |---------------------------------------------- -------------------------------------------------------+
32 * | L40 || L41 | L42 | L43 | L44 | L45 | L46 | | R40 | R41 | R42 | R43 | R44 | R45 | R46 || R47 |
33 * |----------------------------------------------- -----------------------------------------------------+
34 * | L50 || L51 | L52 | L53 | L54 | L55 | L56 | | R50 | R51 | R52 | R53 | R54 | R55 | R56 || R57 |
35 * |----------------------------------------------- ----------------------------------------------------
36 */
37#define LAYOUT( \
38 L00, L01, L02, L03, L04, L05, R00, R01, R02, R03, R04, R05, R06, R07, \
39 L10, L11, L12, L13, L14, L15, L16, L17, R10, R11, R12, R13, R14, R15, R16, R17, R18, \
40 L20, L21, L22, L23, L24, L25, L26, R20, R21, R22, R23, R24, R25, R26, R28, \
41 L30, L31, L32, L33, L34, L35, L36, R30, R31, R32, R33, R34, R35, R36, R27, R37, \
42 L40, L41, L42, L43, L44, L45, L46, R40, R41, R42, R43, R44, R45, R46, R47, \
43 L50, L51, L52, L53, L54, L55, L56, R50, R51, R52, R53, R54, R55, R56, R57 \
44 ) \
45 { \
46 { L00, L01, L02, L03, L04, L05, KC_NO, KC_NO, KC_NO }, \
47 { L10, L11, L12, L13, L14, L15, L16, L17, KC_NO }, \
48 { L20, L21, L22, L23, L24, L25, L26, KC_NO, KC_NO }, \
49 { L30, L31, L32, L33, L34, L35, L36, KC_NO, KC_NO }, \
50 { L40, L41, L42, L43, L44, L45, L46, KC_NO, KC_NO }, \
51 { L50, L51, L52, L53, L54, L55, L56, KC_NO, KC_NO }, \
52 { R00, R01, R02, R03, R04, R05, R06, R07, KC_NO }, \
53 { R10, R11, R12, R13, R14, R15, R16, R17, R18 }, \
54 { R20, R21, R22, R23, R24, R25, R26, R28, KC_NO }, \
55 { R30, R31, R32, R33, R34, R35, R36, R27, R37 }, \
56 { R40, R41, R42, R43, R44, R45, R46, R47, KC_NO }, \
57 { R50, R51, R52, R53, R54, R55, R56, R57, KC_NO } \
58 }
diff --git a/keyboards/pistachio/rev2/rules.mk b/keyboards/pistachio/rev2/rules.mk
new file mode 100644
index 000000000..178866419
--- /dev/null
+++ b/keyboards/pistachio/rev2/rules.mk
@@ -0,0 +1,23 @@
1# MCU name
2MCU = atmega32u4
3
4# Bootloader selection
5BOOTLOADER = caterina
6
7# Build Options
8# change yes to no to disable
9#
10BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration
11MOUSEKEY_ENABLE = yes # Mouse keys
12EXTRAKEY_ENABLE = yes # Audio control and System control
13CONSOLE_ENABLE = no # Console for debug
14COMMAND_ENABLE = yes # Commands for debug and configuration
15# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
16SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
17# if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
18NKRO_ENABLE = yes # USB Nkey Rollover
19BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
20RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow
21BLUETOOTH_ENABLE = no # Enable Bluetooth
22AUDIO_ENABLE = no # Audio output
23SPLIT_KEYBOARD = yes # Enable split keyboard