Zompi compiles and flashes!
This commit is contained in:
parent
fcc14b8838
commit
3fac02d691
39
keyboards/zompi/config.h
Normal file
39
keyboards/zompi/config.h
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2022 Thomas.Haukland@gmail.com
|
||||||
|
*
|
||||||
|
* 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"
|
||||||
|
#define VENDOR_ID 0xA8F8
|
||||||
|
#define PRODUCT_ID 0x1830
|
||||||
|
#define DEVICE_VER 0x0001
|
||||||
|
#define MANUFACTURER tompi
|
||||||
|
#define PRODUCT Zompi
|
||||||
|
|
||||||
|
//#define SOFT_SERIAL_PIN GP0
|
||||||
|
|
||||||
|
//#define MASTER_RIGHT
|
||||||
|
|
||||||
|
#define MATRIX_ROWS 8
|
||||||
|
#define MATRIX_COLS 5
|
||||||
|
#define RGBLIGHT_LIMIT_VAL 180
|
||||||
|
#define MATRIX_ROW_PINS { GP2, GP3, GP4, GP5 }
|
||||||
|
#define MATRIX_COL_PINS { GP6, GP7, GP8, GP14, GP15 }
|
||||||
|
|
||||||
|
#define DIODE_DIRECTION ROW2COL
|
||||||
|
|
||||||
|
#define DEBOUNCE 5
|
||||||
|
|
47
keyboards/zompi/info.json
Normal file
47
keyboards/zompi/info.json
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
{
|
||||||
|
"keyboard_name": "Zompi",
|
||||||
|
"url": "https://github.com/tompi/qmk_firmware/tree/develop",
|
||||||
|
"maintainer": "Thomas Haukland",
|
||||||
|
"layouts": {
|
||||||
|
"LAYOUT_split_3x5_3": {
|
||||||
|
"layout": [
|
||||||
|
{"label":"L00", "x":0, "y":0},
|
||||||
|
{"label":"L01", "x":1, "y":0},
|
||||||
|
{"label":"L02", "x":2, "y":0},
|
||||||
|
{"label":"L03", "x":3, "y":0},
|
||||||
|
{"label":"L04", "x":4, "y":0},
|
||||||
|
{"label":"R00", "x":11, "y":0},
|
||||||
|
{"label":"R01", "x":12, "y":0},
|
||||||
|
{"label":"R02", "x":13, "y":0},
|
||||||
|
{"label":"R03", "x":14, "y":0},
|
||||||
|
{"label":"R04", "x":15, "y":0},
|
||||||
|
{"label":"L10", "x":0, "y":1},
|
||||||
|
{"label":"L11", "x":1, "y":1},
|
||||||
|
{"label":"L12", "x":2, "y":1},
|
||||||
|
{"label":"L13", "x":3, "y":1},
|
||||||
|
{"label":"L14", "x":4, "y":1},
|
||||||
|
{"label":"R10", "x":11, "y":1},
|
||||||
|
{"label":"R11", "x":12, "y":1},
|
||||||
|
{"label":"R12", "x":13, "y":1},
|
||||||
|
{"label":"R13", "x":14, "y":1},
|
||||||
|
{"label":"R14", "x":15, "y":1},
|
||||||
|
{"label":"L20", "x":0, "y":2},
|
||||||
|
{"label":"L21", "x":1, "y":2},
|
||||||
|
{"label":"L22", "x":2, "y":2},
|
||||||
|
{"label":"L23", "x":3, "y":2},
|
||||||
|
{"label":"L24", "x":4, "y":2},
|
||||||
|
{"label":"R20", "x":11, "y":2},
|
||||||
|
{"label":"R21", "x":12, "y":2},
|
||||||
|
{"label":"R22", "x":13, "y":2},
|
||||||
|
{"label":"R23", "x":14, "y":2},
|
||||||
|
{"label":"R24", "x":15, "y":2},
|
||||||
|
{"label":"L33", "x":4, "y":3},
|
||||||
|
{"label":"L34", "x":5, "y":3},
|
||||||
|
{"label":"L31", "x":6, "y":3},
|
||||||
|
{"label":"R33", "x":9, "y":3},
|
||||||
|
{"label":"R34", "x":10, "y":3},
|
||||||
|
{"label":"R31", "x":11, "y":3}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
69
keyboards/zompi/keymaps/default/keymap.c
Normal file
69
keyboards/zompi/keymaps/default/keymap.c
Normal file
@ -0,0 +1,69 @@
|
|||||||
|
/*
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
|
||||||
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||||
|
|
||||||
|
[0] = LAYOUT_split_3x5_3(
|
||||||
|
//,-----------------------------------------------------. ,-----------------------------------------------------.
|
||||||
|
KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P,
|
||||||
|
//|--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------|
|
||||||
|
KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN,
|
||||||
|
//|--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------|
|
||||||
|
KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH,
|
||||||
|
//|--------+--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------+--------|
|
||||||
|
KC_LGUI, KC_SPC , MO(1), MO(2), KC_ENT , KC_RALT
|
||||||
|
//`--------------------------' `--------------------------'
|
||||||
|
|
||||||
|
),
|
||||||
|
|
||||||
|
[1] = LAYOUT_split_3x5_3(
|
||||||
|
//,-----------------------------------------------------. ,-----------------------------------------------------.
|
||||||
|
KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0,
|
||||||
|
//|--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------|
|
||||||
|
XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_LEFT, KC_DOWN, KC_UP,KC_RIGHT, XXXXXXX,
|
||||||
|
//|--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------|
|
||||||
|
XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX,
|
||||||
|
//|--------+--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------+--------|
|
||||||
|
KC_LGUI, KC_SPC, _______, MO(3), KC_ENT, KC_RALT
|
||||||
|
//`--------------------------' `--------------------------'
|
||||||
|
),
|
||||||
|
|
||||||
|
[2] = LAYOUT_split_3x5_3(
|
||||||
|
//,-----------------------------------------------------. ,-----------------------------------------------------.
|
||||||
|
KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN,
|
||||||
|
//|--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------|
|
||||||
|
XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_MINS, KC_EQL, KC_LBRC, KC_RBRC, KC_BSLS,
|
||||||
|
//|--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------|
|
||||||
|
XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_UNDS, KC_PLUS, KC_LCBR, KC_RCBR, KC_PIPE,
|
||||||
|
//|--------+--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------+--------|
|
||||||
|
KC_LGUI, KC_SPC, MO(3), _______, KC_ENT, KC_RALT
|
||||||
|
//`--------------------------' `--------------------------'
|
||||||
|
),
|
||||||
|
|
||||||
|
[3] = LAYOUT_split_3x5_3(
|
||||||
|
//,-----------------------------------------------------. ,-----------------------------------------------------.
|
||||||
|
XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX,
|
||||||
|
//|--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------|
|
||||||
|
RGB_HUI, RGB_SAI, RGB_VAI, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX,
|
||||||
|
//|--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------|
|
||||||
|
RGB_HUD, RGB_SAD, RGB_VAD, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX,
|
||||||
|
//|--------+--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------+--------|
|
||||||
|
KC_LGUI, KC_SPC, _______, _______, KC_ENT, KC_RALT
|
||||||
|
//`--------------------------' `--------------------------'
|
||||||
|
)
|
||||||
|
};
|
11
keyboards/zompi/readme.md
Normal file
11
keyboards/zompi/readme.md
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
# Zompi
|
||||||
|
|
||||||
|
My experiment with qmk and the rp2040-zero.
|
||||||
|
|
||||||
|
Blingy split keyboard using audio, leds and rotary encoders, because these
|
||||||
|
things are essentials, right?
|
||||||
|
|
||||||
|
Make example for this keyboard (after setting up your build environment):
|
||||||
|
|
||||||
|
make zompi:default
|
||||||
|
|
28
keyboards/zompi/rules.mk
Normal file
28
keyboards/zompi/rules.mk
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
# MCU name
|
||||||
|
MCU = RP2040
|
||||||
|
|
||||||
|
# Bootloader selection
|
||||||
|
BOOTLOADER = rp2040
|
||||||
|
|
||||||
|
# Build Options
|
||||||
|
# change yes to no to disable
|
||||||
|
#
|
||||||
|
BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite
|
||||||
|
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
|
||||||
|
#NKRO_ENABLE = yes # Enable N-Key Rollover
|
||||||
|
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
|
||||||
|
RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow
|
||||||
|
RGB_MATRIX_ENABLE = no # Enable keyboard RGB matrix (do not use together with RGBLIGHT_ENABLE)
|
||||||
|
#RGB_MATRIX_DRIVER = WS2812 # RGB matrix driver support
|
||||||
|
AUDIO_ENABLE = no # Audio output
|
||||||
|
#SPLIT_KEYBOARD = yes
|
||||||
|
LTO_ENABLE = yes
|
||||||
|
|
||||||
|
AUDIO_SUPPORTED = no
|
||||||
|
RGB_MATRIX_SUPPORTED = no
|
||||||
|
RGBLIGHT_SUPPORTED = no
|
||||||
|
|
||||||
|
LAYOUTS = split_3x5_3
|
19
keyboards/zompi/zompi.c
Normal file
19
keyboards/zompi/zompi.c
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2022 Thomas.Haukland@gmail.com
|
||||||
|
*
|
||||||
|
* 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 "zompi.h"
|
||||||
|
|
38
keyboards/zompi/zompi.h
Normal file
38
keyboards/zompi/zompi.h
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2022 Thomas.Haukland@gmail.com
|
||||||
|
*
|
||||||
|
* 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"
|
||||||
|
|
||||||
|
// clang-format off
|
||||||
|
#define LAYOUT_split_3x5_3( \
|
||||||
|
k00, k01, k02, k03, k04, k44, k43, k42, k41, k40, \
|
||||||
|
k10, k11, k12, k13, k14, k54, k53, k52, k51, k50, \
|
||||||
|
k20, k21, k22, k23, k24, k64, k63, k62, k61, k60, \
|
||||||
|
k32, k33, k30, k70, k73, k72 \
|
||||||
|
) \
|
||||||
|
{ \
|
||||||
|
{ k00, k01, k02, k03, k04 }, \
|
||||||
|
{ k10, k11, k12, k13, k14 }, \
|
||||||
|
{ k20, k21, k22, k23, k24 }, \
|
||||||
|
{ k30, KC_NO, k32, k33, KC_NO }, \
|
||||||
|
{ k40, k41, k42, k43, k44 }, \
|
||||||
|
{ k50, k51, k52, k53, k54 }, \
|
||||||
|
{ k60, k61, k62, k63, k64 }, \
|
||||||
|
{ k70, KC_NO, k72, k73, KC_NO }, \
|
||||||
|
}
|
||||||
|
// clang-format on
|
Loading…
x
Reference in New Issue
Block a user