From 3d546c085325f906e8a512c24c94fdaa2c31ec73 Mon Sep 17 00:00:00 2001 From: Brandon Claveria <48102030+swiftrax@users.noreply.github.com> Date: Tue, 15 Jun 2021 14:43:18 -0700 Subject: [PATCH] add tender/macrowo_pad (#12786) * add tender/macrowo_pad * add another layer for via keymap Co-authored-by: Swiftrax --- keyboards/tender/macrowo_pad/config.h | 40 ++++++++++++ keyboards/tender/macrowo_pad/info.json | 12 ++++ .../macrowo_pad/keymaps/default/keymap.c | 56 ++++++++++++++++ .../macrowo_pad/keymaps/default/rules.mk | 1 + .../tender/macrowo_pad/keymaps/via/keymap.c | 64 +++++++++++++++++++ .../tender/macrowo_pad/keymaps/via/rules.mk | 2 + keyboards/tender/macrowo_pad/macrowo_pad.c | 17 +++++ keyboards/tender/macrowo_pad/macrowo_pad.h | 27 ++++++++ keyboards/tender/macrowo_pad/readme.md | 16 +++++ keyboards/tender/macrowo_pad/rules.mk | 23 +++++++ 10 files changed, 258 insertions(+) create mode 100644 keyboards/tender/macrowo_pad/config.h create mode 100644 keyboards/tender/macrowo_pad/info.json create mode 100644 keyboards/tender/macrowo_pad/keymaps/default/keymap.c create mode 100644 keyboards/tender/macrowo_pad/keymaps/default/rules.mk create mode 100644 keyboards/tender/macrowo_pad/keymaps/via/keymap.c create mode 100644 keyboards/tender/macrowo_pad/keymaps/via/rules.mk create mode 100644 keyboards/tender/macrowo_pad/macrowo_pad.c create mode 100644 keyboards/tender/macrowo_pad/macrowo_pad.h create mode 100644 keyboards/tender/macrowo_pad/readme.md create mode 100644 keyboards/tender/macrowo_pad/rules.mk diff --git a/keyboards/tender/macrowo_pad/config.h b/keyboards/tender/macrowo_pad/config.h new file mode 100644 index 000000000..51f8fbb14 --- /dev/null +++ b/keyboards/tender/macrowo_pad/config.h @@ -0,0 +1,40 @@ +/* Copyright 2021 swiftrax + * + * 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 . + */ +#pragma once + +#include "config_common.h" + +/* USB Device descriptor parameter */ +#define VENDOR_ID 0x04D8 +#define PRODUCT_ID 0xE936 +#define DEVICE_VER 0x0001 +#define MANUFACTURER Tender +#define PRODUCT Macrowo Pad +/* key matrix size */ +#define MATRIX_ROWS 2 +#define MATRIX_COLS 10 + +/* key matrix pins */ +#define MATRIX_ROW_PINS { B5, D7 } +#define MATRIX_COL_PINS { E6, B4, B6, B2, B3, B1, F7, F6, F5, F4 } +#define UNUSED_PINS + +/* COL2ROW or ROW2COL */ +#define DIODE_DIRECTION COL2ROW + +/* Set 0 if debouncing isn't needed */ +#define DEBOUNCE 5 + diff --git a/keyboards/tender/macrowo_pad/info.json b/keyboards/tender/macrowo_pad/info.json new file mode 100644 index 000000000..fcfc2931e --- /dev/null +++ b/keyboards/tender/macrowo_pad/info.json @@ -0,0 +1,12 @@ +{ + "keyboard_name": "Macrowo_Pad", + "url": "https//www.github.com/swiftrax", + "maintainer": "swiftrax", + "width": 11.5, + "height": 3, + "layouts": { + "LAYOUT": { + "layout": [{"label":"0,1", "x":1, "y":0}, {"label":"0,3", "x":3.25, "y":0}, {"label":"0,6", "x":7.25, "y":0}, {"label":"0,8", "x":9.5, "y":0}, {"label":"0,0", "x":0, "y":0.5}, {"label":"0,2", "x":2, "y":0.5}, {"label":"0,7", "x":8.5, "y":0.5}, {"label":"0,9", "x":10.5, "y":0.5}, {"label":"0,4", "x":3.75, "y":1}, {"label":"0,5", "x":6.75, "y":1}, {"label":"1,4", "x":5.25, "y":1.25}, {"label":"1,0", "x":0, "y":1.5}, {"label":"1,2", "x":2, "y":1.5}, {"label":"1,7", "x":8.5, "y":1.5}, {"label":"1,9", "x":10.5, "y":1.5}, {"label":"1,1", "x":1, "y":2}, {"label":"1,3", "x":4.25, "y":2}, {"label":"1,5", "x":6.25, "y":2}, {"label":"1,8", "x":9.5, "y":2}] + } + } +} \ No newline at end of file diff --git a/keyboards/tender/macrowo_pad/keymaps/default/keymap.c b/keyboards/tender/macrowo_pad/keymaps/default/keymap.c new file mode 100644 index 000000000..f3ee17995 --- /dev/null +++ b/keyboards/tender/macrowo_pad/keymaps/default/keymap.c @@ -0,0 +1,56 @@ +/* Copyright 2021 swiftrax + * + * 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 . + */ + +#include QMK_KEYBOARD_H + +enum custom_keycodes { + SAY_OWO = SAFE_RANGE, +}; + +bool process_record_user(uint16_t keycode, keyrecord_t *record) { + switch (keycode) { + case SAY_OWO: + if (record->event.pressed) { + // when keycode SAY_OWO is pressed + SEND_STRING("OWO"); + } else { + // when keycode SAY_OWO is released + } + break; + } + return true; +}; + +const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { + + [0] = LAYOUT( + SAY_OWO, SAY_OWO, SAY_OWO, SAY_OWO, SAY_OWO, SAY_OWO, SAY_OWO, SAY_OWO, SAY_OWO, SAY_OWO, + SAY_OWO, SAY_OWO, SAY_OWO, SAY_OWO, SAY_OWO, SAY_OWO, SAY_OWO, SAY_OWO, SAY_OWO), + + [1] = LAYOUT( + KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, + KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS) +}; + +#ifdef OLED_DRIVER_ENABLE +oled_rotation_t oled_init_user(oled_rotation_t rotation) { + return OLED_ROTATION_270; +} + +void oled_task_user(void) { + oled_write_P(PSTR("OWO\nWhat's\nthis?"), false); +} +#endif diff --git a/keyboards/tender/macrowo_pad/keymaps/default/rules.mk b/keyboards/tender/macrowo_pad/keymaps/default/rules.mk new file mode 100644 index 000000000..b898ed179 --- /dev/null +++ b/keyboards/tender/macrowo_pad/keymaps/default/rules.mk @@ -0,0 +1 @@ +OLED_DRIVER_ENABLE = yes # Enable Support for SSD1306 or SH1106 OLED Displays; Communicating over I2C \ No newline at end of file diff --git a/keyboards/tender/macrowo_pad/keymaps/via/keymap.c b/keyboards/tender/macrowo_pad/keymaps/via/keymap.c new file mode 100644 index 000000000..9f527fd9e --- /dev/null +++ b/keyboards/tender/macrowo_pad/keymaps/via/keymap.c @@ -0,0 +1,64 @@ +/* Copyright 2021 swiftrax + * + * 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 . + */ + +#include QMK_KEYBOARD_H + +enum custom_keycodes { + SAY_OWO = SAFE_RANGE, +}; + +bool process_record_user(uint16_t keycode, keyrecord_t *record) { + switch (keycode) { + case SAY_OWO: + if (record->event.pressed) { + // when keycode SAY_OWO is pressed + SEND_STRING("OWO"); + } else { + // when keycode SAY_OWO is released + } + break; + } + return true; +}; + +const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { + + [0] = LAYOUT( + SAY_OWO, SAY_OWO, SAY_OWO, SAY_OWO, SAY_OWO, SAY_OWO, SAY_OWO, SAY_OWO, SAY_OWO, SAY_OWO, + SAY_OWO, SAY_OWO, SAY_OWO, SAY_OWO, SAY_OWO, SAY_OWO, SAY_OWO, SAY_OWO, SAY_OWO), + + [1] = LAYOUT( + KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, + KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS), + + [2] = LAYOUT( + KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, + KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS), + + [3] = LAYOUT( + KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, + KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS) +}; + +#ifdef OLED_DRIVER_ENABLE +oled_rotation_t oled_init_user(oled_rotation_t rotation) { + return OLED_ROTATION_270; +} + +void oled_task_user(void) { + oled_write_P(PSTR("OWO\nWhat's\nthis?"), false); +} +#endif diff --git a/keyboards/tender/macrowo_pad/keymaps/via/rules.mk b/keyboards/tender/macrowo_pad/keymaps/via/rules.mk new file mode 100644 index 000000000..0d102b41e --- /dev/null +++ b/keyboards/tender/macrowo_pad/keymaps/via/rules.mk @@ -0,0 +1,2 @@ +VIA_ENABLE = yes +OLED_DRIVER_ENABLE = yes # Enable Support for SSD1306 or SH1106 OLED Displays; Communicating over I2C diff --git a/keyboards/tender/macrowo_pad/macrowo_pad.c b/keyboards/tender/macrowo_pad/macrowo_pad.c new file mode 100644 index 000000000..4dd6441e5 --- /dev/null +++ b/keyboards/tender/macrowo_pad/macrowo_pad.c @@ -0,0 +1,17 @@ +/* Copyright 2021 swiftrax + * + * 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 . + */ +#include "macrowo_pad.h" + \ No newline at end of file diff --git a/keyboards/tender/macrowo_pad/macrowo_pad.h b/keyboards/tender/macrowo_pad/macrowo_pad.h new file mode 100644 index 000000000..b095c037a --- /dev/null +++ b/keyboards/tender/macrowo_pad/macrowo_pad.h @@ -0,0 +1,27 @@ +/* Copyright 2021 swiftrax + * + * 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 . + */ +#pragma once + +#include "quantum.h" + +#define LAYOUT( \ + K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, \ + K10, K11, K12, K13, K14, K15, K17, K18, K19 \ +) \ +{ \ + { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09 }, \ + { K10, K11, K12, K13, K14, K15, KC_NO, K17, K18, K19 } \ +} diff --git a/keyboards/tender/macrowo_pad/readme.md b/keyboards/tender/macrowo_pad/readme.md new file mode 100644 index 000000000..336a06708 --- /dev/null +++ b/keyboards/tender/macrowo_pad/readme.md @@ -0,0 +1,16 @@ + +# Macrowo_Pad + +! Macrowo Pad + +Need I say more? + +- Keyboard Maintainer: [swiftrax](https://github.com/swiftrax) +- Hardware Supported: Macrowo_Pad, Pro Micro, Elite-C, Proton C, BlueMicro. +- Hardware Availability: Macrowo_Pad + +Make example for this keyboard (after setting up your build environment): + + make tender/macrowo_pad:default + +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). diff --git a/keyboards/tender/macrowo_pad/rules.mk b/keyboards/tender/macrowo_pad/rules.mk new file mode 100644 index 000000000..9d5d7c8ce --- /dev/null +++ b/keyboards/tender/macrowo_pad/rules.mk @@ -0,0 +1,23 @@ +# MCU name +MCU = atmega32u4 + +# Bootloader selection +BOOTLOADER = caterina + +# Build Options +# change yes to no to disable +# +BOOTMAGIC_ENABLE = lite # Virtual DIP switch configuration +MOUSEKEY_ENABLE = yes # Mouse keys +EXTRAKEY_ENABLE = yes # Audio control and System control +# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE +SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend +# if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work +NKRO_ENABLE = no # USB Nkey Rollover +BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default +RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow +MIDI_ENABLE = no # MIDI support +UNICODE_ENABLE = no # Unicode +BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID +AUDIO_ENABLE = no # Audio output on port C6 +ENCODER_ENABLE = no # Enable support for EC11 Rotary Encoder