qmk-dactyl-manuform-a/keyboards/meira
Ryan 99b35940bc
Remove unnecessary backslash-escapes in default keymaps (#15472)
* Remove unnecessary backslash-escapes in default keymaps

* Remove unnecessary backslash-escapes in via keymaps

* Remove unnecessary backslash-escapes in default-ish keymaps
2021-12-14 12:41:16 +00:00
..
featherble Merge remote-tracking branch 'upstream/master' into develop 2021-09-26 03:04:11 -07:00
keymaps Remove unnecessary backslash-escapes in default keymaps (#15472) 2021-12-14 12:41:16 +00:00
promicro Merge remote-tracking branch 'upstream/master' into develop 2021-09-26 03:04:11 -07:00
TWIlib.c Normalise include statements in keyboard code (#11185) 2020-12-16 14:27:23 +11:00
TWIlib.h Fix TWIlib compilation on avr-gcc 10 (#9273) 2020-09-17 10:45:07 +10:00
config.h Change keyboard level include guards to `pragma once` (#14248) 2021-09-01 19:03:14 +10:00
info.json Remove deprecated KEYMAP alias (#15037) 2021-11-03 12:18:11 +11:00
issi.c
issi.h Change keyboard level include guards to `pragma once` (#14248) 2021-09-01 19:03:14 +10:00
lighting.c Remove deprecated KEYMAP alias (#15037) 2021-11-03 12:18:11 +11:00
lighting.h Change keyboard level include guards to `pragma once` (#14248) 2021-09-01 19:03:14 +10:00
matrix.c dirty fix (#13695) 2021-07-25 12:33:30 +10:00
meira.c Meira Refactor (#14566) 2021-09-23 00:49:02 -07:00
meira.h Meira Refactor (#14566) 2021-09-23 00:49:02 -07:00
readme.md Meira Refactor (#14566) 2021-09-23 00:49:02 -07:00
rules.mk Tidy up NKRO_ENABLE rules (#15382) 2021-12-09 16:05:44 +11:00

readme.md

Meira

Meira

A 4x12 ortholinear low-profile keyboard.

Two controllers are supported: the Pro Micro, and the Adafruit Feather BLE 32u4. Support for each is defined as a hardware revision subfolder in QMK. Main differences include processor frequencies and matrix pinouts.

Make examples for this keyboard (after setting up your build environment):

make meira/featherble:default  # for Feather BLE 32u4 controllers
make meira/promicro:default    # for Pro Micro controllers

See the build environment setup and the make instructions for more information. Brand new to QMK? Start with our Complete Newbs Guide.

Both the Pro Micro and the Feather BLE use the Caterina bootloader, which is typically programmed using avrdude.

Matrix

In order to have enough pins for the matrix and other functions, a custom matrix is implemented using a demultiplexer to scan the columns. Since the demux is active low, the diodes must be oriented with the cathode connected to the demux pin. When looking at the bottom of the board with the controller at the top right, the cathode mark on the diode should be toward the left.

LED Controller

The in-switch LEDs are driven by an ISSI LED controller (IS31FL3731). The micro controller communicates with this chip using I2C. Individual LED control is possible, but currently only general backlighting support is implemented. This functionality is located in lighting.c, issi.c, and TWILib.c.