Browse Source

1x4p1 (#11186)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Erovia <Erovia@users.noreply.github.com>
pull/11335/head
David Doan 3 years ago
committed by GitHub
parent
commit
5fde2d730c
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
11 changed files with 238 additions and 0 deletions
  1. +18
    -0
      keyboards/arrayperipherals/1x4p1/1x4p1.c
  2. +26
    -0
      keyboards/arrayperipherals/1x4p1/1x4p1.h
  3. +41
    -0
      keyboards/arrayperipherals/1x4p1/config.h
  4. +18
    -0
      keyboards/arrayperipherals/1x4p1/info.json
  5. +39
    -0
      keyboards/arrayperipherals/1x4p1/keymaps/default/keymap.c
  6. +5
    -0
      keyboards/arrayperipherals/1x4p1/keymaps/default/readme.md
  7. +45
    -0
      keyboards/arrayperipherals/1x4p1/keymaps/via/keymap.c
  8. +1
    -0
      keyboards/arrayperipherals/1x4p1/keymaps/via/rules.mk
  9. +16
    -0
      keyboards/arrayperipherals/1x4p1/readme.md
  10. +24
    -0
      keyboards/arrayperipherals/1x4p1/rules.mk
  11. +5
    -0
      keyboards/arrayperipherals/readme.md

+ 18
- 0
keyboards/arrayperipherals/1x4p1/1x4p1.c View File

@ -0,0 +1,18 @@
/*
Copyright 2020 David Doan
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 <http://www.gnu.org/licenses/>.
*/
#include "1x4p1.h"

+ 26
- 0
keyboards/arrayperipherals/1x4p1/1x4p1.h View File

@ -0,0 +1,26 @@
/*
Copyright 2020 David Doan
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 <http://www.gnu.org/licenses/>.
*/
#pragma once
#include "quantum.h"
#define LAYOUT_ortho_1x5( \
k01, k02, k03, k04, k05\
) { \
{ k01, k02, k03, k04, k05} \
}

+ 41
- 0
keyboards/arrayperipherals/1x4p1/config.h View File

@ -0,0 +1,41 @@
/*
Copyright 2020 David Doan
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 <http://www.gnu.org/licenses/>.
*/
#pragma once
#include "config_common.h"
/* USB Device descriptor parameter */
#define VENDOR_ID 0x4152 // "AR"
#define PRODUCT_ID 0x4F46 // "OF"
#define DEVICE_VER 0x0001
#define MANUFACTURER Array Peripherals
#define PRODUCT [1x4] + 1 Macropad
/* key matrix size */
#define MATRIX_ROWS 1
#define MATRIX_COLS 5
#define DIRECT_PINS { \
{ C7, B7, D6, F5, F7} \
}
#define UNUSED_PINS
/* rotary encoder*/
#define ENCODERS_PAD_A {F0}
#define ENCODERS_PAD_B {F1}

+ 18
- 0
keyboards/arrayperipherals/1x4p1/info.json View File

@ -0,0 +1,18 @@
{
"keyboard_name": "[1 x 4] + 1 Macropad",
"url": "https://github.com/daviddoan",
"maintainer": "David Doan",
"width": 5,
"height": 1,
"layouts": {
"LAYOUT_ortho_1x5": {
"layout": [
{"label": "K01", "x":0, "y":0},
{"label": "K02", "x":1, "y":0},
{"label": "K03", "x":2, "y":0},
{"label": "K04", "x":3, "y":0},
{"label": "K05", "x":4, "y":0}
]
}
}
}

+ 39
- 0
keyboards/arrayperipherals/1x4p1/keymaps/default/keymap.c View File

@ -0,0 +1,39 @@
/*
Copyright 2020 David Doan
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 <http://www.gnu.org/licenses/>.
*/
#include QMK_KEYBOARD_H
void encoder_update_user(uint8_t index, bool clockwise) {
if (index == 0) { /* First encoder */
if (clockwise) {
tap_code(KC_MS_WH_UP);
} else {
tap_code(KC_MS_WH_DOWN);
}
}
}
//
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { //button closest to usb is first
[0] = LAYOUT_ortho_1x5(
KC_ESC, KC_TAB, KC_LSHIFT, KC_LCTRL, TG(1)
),
[1] = LAYOUT_ortho_1x5(
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, TG(0)
)
};

+ 5
- 0
keyboards/arrayperipherals/1x4p1/keymaps/default/readme.md View File

@ -0,0 +1,5 @@
![[1x4] + 1 Macropad Layout](https://i.imgur.com/ZdXuIwb.png)
# Default [1x4] + 1 Macropad Layout
This is the default layout that comes flashed on every [1x4] + 1 Macropad. The right most key (red) is the rotary and the key is binded to layer switching. The second layer is left blank for the user.

+ 45
- 0
keyboards/arrayperipherals/1x4p1/keymaps/via/keymap.c View File

@ -0,0 +1,45 @@
/*
Copyright 2020 David Doan
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 <http://www.gnu.org/licenses/>.
*/
#include QMK_KEYBOARD_H
void encoder_update_user(uint8_t index, bool clockwise) {
if (index == 0) { /* First encoder */
if (clockwise) {
tap_code(KC_MS_WH_UP);
} else {
tap_code(KC_MS_WH_DOWN);
}
}
}
//
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { //button closest to usb is first
[0] = LAYOUT_ortho_1x5(
KC_ESC, KC_TAB, KC_LSHIFT, KC_LCTRL, TG(1)
),
[1] = LAYOUT_ortho_1x5(
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, TG(2)
),
[2] = LAYOUT_ortho_1x5(
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, TG(3)
),
[3] = LAYOUT_ortho_1x5(
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, TG(0)
)
};

+ 1
- 0
keyboards/arrayperipherals/1x4p1/keymaps/via/rules.mk View File

@ -0,0 +1 @@
VIA_ENABLE = yes

+ 16
- 0
keyboards/arrayperipherals/1x4p1/readme.md View File

@ -0,0 +1,16 @@
# [1x4] + 1 Macropad
![[1x4] + 1 Macropad](https://images.squarespace-cdn.com/content/v1/5f5e7d5dc43c166c56c0ae39/1606977576841-KIT0TOI6L3FO8FTS4ZHB/ke17ZwdGBToddI8pDm48kDk1dm1oSR9gCa1mX4KqzjN7gQa3H78H3Y0txjaiv_0fDoOvxcdMmMKkDsyUqMSsMWxHk725yiiHCCLfrh8O1z4YTzHvnKhyp6Da-NYroOW3ZGjoBKy3azqku80C789l0luj0xCD0oh5KMc0gpox0u-wQWxfQHg04OxgQwaUq2yiAcNt5Kg2tE9yEtYfM4xwaw/DSC_0116.jpg)
A macropad with a 1x4 matrix array with an additional rotary that also functions as a button. [More info at arrayperipherals.com](https://www.arrayperipherals.com/)
* Keyboard Maintainer: [David Doan](https://github.com/daviddoan)
* Hardware Supported: Adafruit ItsyBitsy 32u4
* Hardware Availability: [arrayperipherals.com](https://www.arrayperipherals.com/)
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).
## Resetting macropad into bootloader mode.
The stock version of the macropad has bootmagic lite enabled. To trigger the bootloader, the first key (key furthest way from the rotary) needs to be held down when plugging the keyboard in.
NOTE: Using bootmagic lite will always reset the EEPROM, so you will lose any settings that have been saved.

+ 24
- 0
keyboards/arrayperipherals/1x4p1/rules.mk View File

@ -0,0 +1,24 @@
# 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
CONSOLE_ENABLE = no # Console for debug
COMMAND_ENABLE = no # Commands for debug and configuration
# 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 = yes # USB Nkey Rollover
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow
BLUETOOTH_ENABLE = no # Enable Bluetooth
AUDIO_ENABLE = no # Audio output
UNICODE_ENABLE = yes
ENCODER_ENABLE = yes

+ 5
- 0
keyboards/arrayperipherals/readme.md View File

@ -0,0 +1,5 @@
# Array Peripherals
Array Peripherals is a small company operating out of an apartment by two brothers located in Northern California.
Website: [Array Peripherals](www.arrayperipherals.com)

Loading…
Cancel
Save