Keyboard firmwares for Atmel AVR and Cortex-M
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
di0ib 8b04b7c1b0 Update readme.md 7 роки тому
..
pcb Update readme.md 7 роки тому
FLASH.bin mf68 7 роки тому
GNAP.jpg GNAP keyboard 7 роки тому
LED_FastGPIO.ino GNAP keyboard 7 роки тому
Makefile GNAP keyboard 7 роки тому
config.h GNAP keyboard 7 роки тому
gnap.bin mf68 7 роки тому
keymap_common.h i75, cleanup keymaps 7 роки тому
keymap_gnap.c update keymap 7 роки тому
led.c mf68 7 роки тому
matrix.c i75, cleanup keymaps 7 роки тому
pcb-front.png GNAP keyboard 7 роки тому
readme.md Update readme 7 роки тому
schematic.png GNAP keyboard 7 роки тому

readme.md

GNAP! keyboard firmware

GNAP! 1.0 Assembled

GNAP! dual matrix, dual controller. Per key LED control, reactive lighting. GNAP! 1.0 PCB Front GNAP! 1.0 PCB Schematic

Dual Pro Micro’s. One running TMK, the other running an Arduino sketch driving the LEDs. Pro Micro’s are connected to each other via hardware serial UART.

Pinout

Rows D1, D0, D4, C6 
Cols D7, E6, B4, B5, B6, B2, B3, B1, F7, F6, F5, F4

keymap_gnap.c contains functions to send bytes to the LED controller. The Arduino code interprets these to change modes or brightness.

//GNAP keymap functions
void gnaplight_step(void) {
    serial_send(101);
}

void gnaplight_toggle(void) {
    serial_send(100);
}

\tmk_core\common\keyboard.c was modified to send the row/column of the key being pressed encoded as as single byte over the serial link to the LED controller.

#ifdef GNAP_ENABLE
                //send single byte with value of row column
                serial_send((r*16)+c);
#endif

The example Arduino sketch LED_FastGPIO.ino uses the fastGPIO and TimerOne libraries. These can be installed with the Library manager.

FastGPIO TimerOne