Compilation fixes for handwired/concertina/64key (#11987)
* concatenate config.h to 64key directory * move rules.mk to 64key directory This commit makes the firmware actually compile. * insert complete rules.mk contents Conforms the file to QMK's template. * move info.json to 64key directory * remove concertina.h This file no longer serves a purpose now that everything is in the 64key directory. * complete 64key readme.md Conforms the file more to QMK's template.
This commit is contained in:
@@ -18,6 +18,13 @@
|
||||
|
||||
#include "config_common.h"
|
||||
|
||||
/* USB device descriptors */
|
||||
#define VENDOR_ID 0x444D
|
||||
#define PRODUCT_ID 0x3632
|
||||
#define DEVICE_VER 0x0001
|
||||
#define PRODUCT Concertina
|
||||
#define MANUFACTURER Viktor Eikman
|
||||
|
||||
#define MATRIX_ROWS 8
|
||||
#define MATRIX_COLS 8
|
||||
|
||||
|
37
keyboards/handwired/concertina/64key/info.json
Normal file
37
keyboards/handwired/concertina/64key/info.json
Normal file
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"keyboard_name": "Concertina",
|
||||
"url": "https://viktor.eikman.se/article/the-concertina/",
|
||||
"maintainer": "veikman",
|
||||
"width": 12,
|
||||
"height": 8,
|
||||
"layouts": {
|
||||
"LAYOUT_64key": {
|
||||
"key_count": 64,
|
||||
"layout": [
|
||||
{"x":2, "y":0.5}, {"x":3, "y":0}, {"x":4, "y":0.3},
|
||||
{"x":8, "y":0.7}, {"x":9, "y":0.3}, {"x":10, "y":0},
|
||||
|
||||
{"x":2, "y":1.5}, {"x":3, "y":1}, {"x":4, "y":1.3}, {"x":5, "y":0.7},
|
||||
{"x":8, "y":0.7}, {"x":9, "y":1.3}, {"x":10, "y":1}, {"x":11, "y":1.5},
|
||||
|
||||
{"x":3, "y":2}, {"x":4, "y":2.3}, {"x":5, "y":1.7},
|
||||
{"x":8, "y":1.7}, {"x":9, "y":2.3}, {"x":10, "y":2},
|
||||
|
||||
{"x":2, "y":4}, {"x":3, "y":4}, {"x":4, "y":4}, {"x":5, "y":4},
|
||||
{"x":8, "y":4}, {"x":9, "y":4}, {"x":10, "y":4}, {"x":11, "y":4},
|
||||
|
||||
{"x":0, "y":5}, {"x":1, "y":5}, {"x":2, "y":5}, {"x":3, "y":5}, {"x":4, "y":5}, {"x":5, "y":5},
|
||||
{"x":8, "y":5}, {"x":9, "y":5}, {"x":10, "y":5}, {"x":11, "y":5}, {"x":12, "y":5}, {"x":13, "y":5},
|
||||
|
||||
{"x":0, "y":6}, {"x":1, "y":6}, {"x":2, "y":6}, {"x":3, "y":6}, {"x":4, "y":6}, {"x":5, "y":6},
|
||||
{"x":8, "y":6}, {"x":9, "y":6}, {"x":10, "y":6}, {"x":11, "y":6}, {"x":12, "y":6}, {"x":13, "y":6},
|
||||
|
||||
{"x":0, "y":7}, {"x":1, "y":7}, {"x":2, "y":7}, {"x":3, "y":7}, {"x":4, "y":7},
|
||||
{"x":9, "y":7}, {"x":10, "y":7}, {"x":11, "y":7}, {"x":12, "y":7}, {"x":13, "y":7},
|
||||
|
||||
{"x":3, "y":8},
|
||||
{"x":10, "y":8}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
@@ -1,5 +1,8 @@
|
||||
The `64key` layout
|
||||
==================
|
||||
# Concertina 64-key
|
||||
|
||||

|
||||
|
||||
A diploid, concave, columnar keyboard.
|
||||
|
||||
This folder represents the keyboard configuration identified as
|
||||
`concertina_64key` in the DMOTE application’s list of GNU make targets, as of
|
||||
@@ -13,3 +16,17 @@ not run Colemak.
|
||||
|
||||
A full set of printable caps to match the keymap is available in the
|
||||
`dmote-keycap` application, [here](https://github.com/veikman/dmote-keycap).
|
||||
|
||||
* Keyboard Maintainer: [Viktor Eikman](https://github.com/veikman)
|
||||
* Hardware Supported: Concertina 64-key case, Pro Micro (ATmega32U4)
|
||||
* Hardware Availability: [viktor.eikman.se](https://viktor.eikman.se/article/the-concertina/)
|
||||
|
||||
Make example for this keyboard (after setting up your build environment):
|
||||
|
||||
make handwired/concertina/64key:default
|
||||
|
||||
Flashing example for this keyboard:
|
||||
|
||||
make handwired/concertina/64key:default:flash
|
||||
|
||||
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).
|
||||
|
25
keyboards/handwired/concertina/64key/rules.mk
Normal file
25
keyboards/handwired/concertina/64key/rules.mk
Normal file
@@ -0,0 +1,25 @@
|
||||
# Written for a Pro Micro. The keyboard case is compatible with much else.
|
||||
# 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 = no # 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
|
||||
|
||||
TAP_DANCE_ENABLE = yes
|
Reference in New Issue
Block a user