diff options
-rw-r--r-- | keyboards/kb_elmo/isolation/config.h | 62 | ||||
-rw-r--r-- | keyboards/kb_elmo/isolation/info.json | 12 | ||||
-rw-r--r-- | keyboards/kb_elmo/isolation/isolation.c | 17 | ||||
-rw-r--r-- | keyboards/kb_elmo/isolation/isolation.h | 25 | ||||
-rw-r--r-- | keyboards/kb_elmo/isolation/keymaps/default/keymap.c | 22 | ||||
-rw-r--r-- | keyboards/kb_elmo/isolation/readme.md | 24 | ||||
-rw-r--r-- | keyboards/kb_elmo/isolation/rules.mk | 24 | ||||
-rw-r--r-- | keyboards/kb_elmo/qez/qez.h | 2 | ||||
-rw-r--r-- | keyboards/kb_elmo/sesame/readme.md | 15 | ||||
-rw-r--r-- | keyboards/kb_elmo/twelvekey/readme.md | 7 |
10 files changed, 205 insertions, 5 deletions
diff --git a/keyboards/kb_elmo/isolation/config.h b/keyboards/kb_elmo/isolation/config.h new file mode 100644 index 000000000..3d32efbcb --- /dev/null +++ b/keyboards/kb_elmo/isolation/config.h | |||
@@ -0,0 +1,62 @@ | |||
1 | /* | ||
2 | Copyright 2021 kb-elmo<mail@elmo.space> | ||
3 | |||
4 | This program is free software: you can redistribute it and/or modify | ||
5 | it under the terms of the GNU General Public License as published by | ||
6 | the Free Software Foundation, either version 2 of the License, or | ||
7 | (at your option) any later version. | ||
8 | |||
9 | This program is distributed in the hope that it will be useful, | ||
10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
12 | GNU General Public License for more details. | ||
13 | |||
14 | You should have received a copy of the GNU General Public License | ||
15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
16 | */ | ||
17 | |||
18 | #pragma once | ||
19 | |||
20 | #include "config_common.h" | ||
21 | |||
22 | /* USB Device descriptor parameter */ | ||
23 | #define VENDOR_ID 0xA68C | ||
24 | #define PRODUCT_ID 0x4EE6 | ||
25 | #define DEVICE_VER 0x0001 | ||
26 | #define MANUFACTURER kb-elmo | ||
27 | #define PRODUCT ISOlation | ||
28 | |||
29 | /* key matrix size */ | ||
30 | #define MATRIX_ROWS 1 | ||
31 | #define MATRIX_COLS 1 | ||
32 | |||
33 | /* direct key pin */ | ||
34 | #define DIRECT_PINS {{ B0 }} | ||
35 | #define UNUSED_PINS | ||
36 | |||
37 | /* RGB backlight */ | ||
38 | #define RGB_DI_PIN B2 | ||
39 | #ifdef RGB_DI_PIN | ||
40 | # define RGBLED_NUM 3 | ||
41 | # define RGBLIGHT_HUE_STEP 8 | ||
42 | # define RGBLIGHT_SAT_STEP 8 | ||
43 | # define RGBLIGHT_VAL_STEP 8 | ||
44 | # define RGBLIGHT_LIMIT_VAL 255 /* The maximum brightness level */ | ||
45 | # define RGBLIGHT_SLEEP /* If defined, the RGB lighting will be switched off when the host goes to sleep */ | ||
46 | # define RGBLIGHT_EFFECT_BREATHING | ||
47 | # define RGBLIGHT_EFFECT_RAINBOW_MOOD | ||
48 | # define RGBLIGHT_EFFECT_RAINBOW_SWIRL | ||
49 | # define RGBLIGHT_EFFECT_KNIGHT | ||
50 | # define RGBLIGHT_EFFECT_CHRISTMAS | ||
51 | # define RGBLIGHT_EFFECT_STATIC_GRADIENT | ||
52 | # define RGBLIGHT_EFFECT_RGB_TEST | ||
53 | # define RGBLIGHT_EFFECT_ALTERNATING | ||
54 | # define RGBLIGHT_EFFECT_TWINKLE | ||
55 | #endif | ||
56 | |||
57 | /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ | ||
58 | #define DEBOUNCE 5 | ||
59 | |||
60 | /* disable these deprecated features by default */ | ||
61 | #define NO_ACTION_MACRO | ||
62 | #define NO_ACTION_FUNCTION | ||
diff --git a/keyboards/kb_elmo/isolation/info.json b/keyboards/kb_elmo/isolation/info.json new file mode 100644 index 000000000..1cca4610d --- /dev/null +++ b/keyboards/kb_elmo/isolation/info.json | |||
@@ -0,0 +1,12 @@ | |||
1 | { | ||
2 | "keyboard_name": "isolation", | ||
3 | "url": "", | ||
4 | "maintainer": "kb-elmo", | ||
5 | "layouts": { | ||
6 | "LAYOUT": { | ||
7 | "layout": [ | ||
8 | {"x":0.25, "y":0, "w":1.25, "h":2} | ||
9 | ] | ||
10 | } | ||
11 | } | ||
12 | } | ||
diff --git a/keyboards/kb_elmo/isolation/isolation.c b/keyboards/kb_elmo/isolation/isolation.c new file mode 100644 index 000000000..09b8c9554 --- /dev/null +++ b/keyboards/kb_elmo/isolation/isolation.c | |||
@@ -0,0 +1,17 @@ | |||
1 | /* Copyright 2021 kb-elmo<mail@elmo.space> | ||
2 | * | ||
3 | * This program is free software: you can redistribute it and/or modify | ||
4 | * it under the terms of the GNU General Public License as published by | ||
5 | * the Free Software Foundation, either version 2 of the License, or | ||
6 | * (at your option) any later version. | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, | ||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | * GNU General Public License for more details. | ||
12 | * | ||
13 | * You should have received a copy of the GNU General Public License | ||
14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
15 | */ | ||
16 | |||
17 | #include "isolation.h" | ||
diff --git a/keyboards/kb_elmo/isolation/isolation.h b/keyboards/kb_elmo/isolation/isolation.h new file mode 100644 index 000000000..580189ea2 --- /dev/null +++ b/keyboards/kb_elmo/isolation/isolation.h | |||
@@ -0,0 +1,25 @@ | |||
1 | /* Copyright 2021 kb-elmo<mail@elmo.space> | ||
2 | * | ||
3 | * This program is free software: you can redistribute it and/or modify | ||
4 | * it under the terms of the GNU General Public License as published by | ||
5 | * the Free Software Foundation, either version 2 of the License, or | ||
6 | * (at your option) any later version. | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, | ||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | * GNU General Public License for more details. | ||
12 | * | ||
13 | * You should have received a copy of the GNU General Public License | ||
14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
15 | */ | ||
16 | |||
17 | #pragma once | ||
18 | |||
19 | #include "quantum.h" | ||
20 | |||
21 | #define LAYOUT( \ | ||
22 | k00 \ | ||
23 | ) { \ | ||
24 | { k00 } \ | ||
25 | } | ||
diff --git a/keyboards/kb_elmo/isolation/keymaps/default/keymap.c b/keyboards/kb_elmo/isolation/keymaps/default/keymap.c new file mode 100644 index 000000000..9cfa21e9a --- /dev/null +++ b/keyboards/kb_elmo/isolation/keymaps/default/keymap.c | |||
@@ -0,0 +1,22 @@ | |||
1 | /* Copyright 2021 kb-elmo<mail@elmo.space> | ||
2 | * | ||
3 | * This program is free software: you can redistribute it and/or modify | ||
4 | * it under the terms of the GNU General Public License as published by | ||
5 | * the Free Software Foundation, either version 2 of the License, or | ||
6 | * (at your option) any later version. | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, | ||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | * GNU General Public License for more details. | ||
12 | * | ||
13 | * You should have received a copy of the GNU General Public License | ||
14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
15 | */ | ||
16 | #include QMK_KEYBOARD_H | ||
17 | |||
18 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
19 | [0] = LAYOUT( | ||
20 | KC_ENT | ||
21 | ) | ||
22 | }; | ||
diff --git a/keyboards/kb_elmo/isolation/readme.md b/keyboards/kb_elmo/isolation/readme.md new file mode 100644 index 000000000..610c26a59 --- /dev/null +++ b/keyboards/kb_elmo/isolation/readme.md | |||
@@ -0,0 +1,24 @@ | |||
1 | # ISOlation | ||
2 | |||
3 |  | ||
4 | |||
5 | A seamless ISO single-key "macropad" | ||
6 | |||
7 | * Keyboard Maintainer: [kb-elmo](https://github.com/kb-elmo) | ||
8 | * Hardware Supported: ISOlation RGB PCB | ||
9 | * Hardware Availability: [Open source project](https://github.com/kb-elmo/ISOlation) | ||
10 | |||
11 | Make example for this keyboard (after setting up your build environment): | ||
12 | |||
13 | make kb_elmo/isolation:default | ||
14 | |||
15 | Flashing example for this keyboard: | ||
16 | |||
17 | make kb_elmo/isolation:default:flash | ||
18 | |||
19 | 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). | ||
20 | |||
21 | ## Bootloader | ||
22 | |||
23 | * **Bootmagic reset**: Hold down the enter key and plug in the keyboard | ||
24 | * **Bootloader pins**: Short the two pins labeled "BOOT" while plugging the board \ No newline at end of file | ||
diff --git a/keyboards/kb_elmo/isolation/rules.mk b/keyboards/kb_elmo/isolation/rules.mk new file mode 100644 index 000000000..9602f01bc --- /dev/null +++ b/keyboards/kb_elmo/isolation/rules.mk | |||
@@ -0,0 +1,24 @@ | |||
1 | # MCU name | ||
2 | MCU = atmega328p | ||
3 | |||
4 | # Processor frequency | ||
5 | F_CPU = 16000000 | ||
6 | |||
7 | # Bootloader selection | ||
8 | BOOTLOADER = usbasploader | ||
9 | |||
10 | # Build Options | ||
11 | # change yes to no to disable | ||
12 | # | ||
13 | BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite | ||
14 | MOUSEKEY_ENABLE = no # Mouse keys | ||
15 | EXTRAKEY_ENABLE = yes # Audio control and System control | ||
16 | CONSOLE_ENABLE = no # Console for debug | ||
17 | COMMAND_ENABLE = no # Commands for debug and configuration | ||
18 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | ||
19 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | ||
20 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | ||
21 | NKRO_ENABLE = no # USB Nkey Rollover | ||
22 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | ||
23 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | ||
24 | AUDIO_ENABLE = no # Audio output | ||
diff --git a/keyboards/kb_elmo/qez/qez.h b/keyboards/kb_elmo/qez/qez.h index 1bf9cde24..0a3e2c0a7 100644 --- a/keyboards/kb_elmo/qez/qez.h +++ b/keyboards/kb_elmo/qez/qez.h | |||
@@ -53,5 +53,5 @@ | |||
53 | { k00, k01, k02, k03, k04, k05, k06, k07, k08, k09 }, \ | 53 | { k00, k01, k02, k03, k04, k05, k06, k07, k08, k09 }, \ |
54 | { k10, k11, k12, k13, k14, k15, k16, k17, k18, k19 }, \ | 54 | { k10, k11, k12, k13, k14, k15, k16, k17, k18, k19 }, \ |
55 | { k20, k21, k22, k23, k24, k25, k26, k27, k28, k29 }, \ | 55 | { k20, k21, k22, k23, k24, k25, k26, k27, k28, k29 }, \ |
56 | { ___, k31, k32, ___, ___, k35, ___, k37, k38, k39 } \ | 56 | { ___, k31, ___, ___, ___, k35, ___, ___, k38, k39 } \ |
57 | } | 57 | } |
diff --git a/keyboards/kb_elmo/sesame/readme.md b/keyboards/kb_elmo/sesame/readme.md index 9fa7f3541..c0211cfde 100644 --- a/keyboards/kb_elmo/sesame/readme.md +++ b/keyboards/kb_elmo/sesame/readme.md | |||
@@ -1,15 +1,24 @@ | |||
1 | # Sesame | 1 | # Sesame |
2 | 2 | ||
3 |  | 3 |  |
4 | 4 | ||
5 | Alice layout THT keyboard | 5 | Alice layout THT keyboard |
6 | 6 | ||
7 | * Keyboard Maintainer: [kb-elmo](https://github.com/kb-elmo) | 7 | * Keyboard Maintainer: [kb-elmo](https://github.com/kb-elmo) |
8 | * Hardware Supported: Sesame | 8 | * Hardware Supported: Sesame PCB rev.1 and rev.2 |
9 | * Hardware Availability: [Project is open source](https://github.com/kb-elmo/sesame) | 9 | * Hardware Availability: [Open source project](https://github.com/kb-elmo/sesame) |
10 | 10 | ||
11 | Make example for this keyboard (after setting up your build environment): | 11 | Make example for this keyboard (after setting up your build environment): |
12 | 12 | ||
13 | make kb_elmo/sesame:default | 13 | make kb_elmo/sesame:default |
14 | 14 | ||
15 | Flashing example for this keyboard: | ||
16 | |||
17 | make kb_elmo/sesame:default:flash | ||
18 | |||
15 | 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). | 19 | 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). |
20 | |||
21 | ## Bootloader | ||
22 | |||
23 | * **Bootmagic reset**: Hold down the top left key and plug in the keyboard | ||
24 | * **Physical reset button**: Hold down the button labeled "BOOT" and briefly press the button labeled "RESET" on the back of the PCB \ No newline at end of file | ||
diff --git a/keyboards/kb_elmo/twelvekey/readme.md b/keyboards/kb_elmo/twelvekey/readme.md index db2406378..ab256d047 100644 --- a/keyboards/kb_elmo/twelvekey/readme.md +++ b/keyboards/kb_elmo/twelvekey/readme.md | |||
@@ -1,6 +1,6 @@ | |||
1 | # Twelvekey | 1 | # Twelvekey |
2 | 2 | ||
3 |  | 3 |  |
4 | 4 | ||
5 | Simple 12-key macropad | 5 | Simple 12-key macropad |
6 | 6 | ||
@@ -17,3 +17,8 @@ Flashing example for this keyboard: | |||
17 | make kb_elmo/twelvekey:default:flash | 17 | make kb_elmo/twelvekey:default:flash |
18 | 18 | ||
19 | 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). | 19 | 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). |
20 | |||
21 | ## Bootloader | ||
22 | |||
23 | * **Bootmagic reset**: Hold down the top left key and plug in the keyboard | ||
24 | * **Physical reset button**: Hold down the button labeled "BOOT" and briefly press the button labeled "RESET" on the back of the PCB | ||