forked from forks/qmk_firmware
1d550552ca
* Added new 2x5 Keypad with 3 LEDs to indicate the selected layer. By Jonathan Cameron. * Minor refactor from suggestions from qmk team * Added * Moved to 'handwired' directory * Update readme.md * Update readme.md * Update readme.md * Update keyboards/handwired/2x5keypad/readme.md Co-Authored-By: fauxpark <fauxpark@gmail.com> * Switch to image offsite * Moved image offsite * Update keyboards/handwired/2x5keypad/keymaps/default/keymap.h Co-Authored-By: fauxpark <fauxpark@gmail.com> * Update keyboards/handwired/2x5keypad/2x5keypad.h Co-Authored-By: fauxpark <fauxpark@gmail.com> * Moved functions into .c file per suggestions * Cosmetic * Fixed function called, per suggestions. * Update keyboards/handwired/2x5keypad/2x5keypad.h Ok Co-Authored-By: fauxpark <fauxpark@gmail.com> * Moved LED functions to the top level since they can be used it various flavors * Declare those moved LED functions! * Update keyboards/handwired/2x5keypad/config.h Co-Authored-By: Drashna Jaelre <drashna@live.com> * First cut at French support * Added French layer (green) for accented and special French characters * Added french layer * Fixed typo * Updated to get more reasonable tap function
28 lines
765 B
Makefile
28 lines
765 B
Makefile
# MCU name
|
|
MCU = atmega32u4
|
|
|
|
# Bootloader selection
|
|
# Teensy halfkay
|
|
# Pro Micro caterina
|
|
# Atmel DFU atmel-dfu
|
|
# LUFA DFU lufa-dfu
|
|
# QMK DFU qmk-dfu
|
|
# ATmega32A bootloadHID
|
|
# ATmega328P USBasp
|
|
BOOTLOADER = caterina
|
|
|
|
|
|
AUDIO_ENABLE = no
|
|
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
|
|
BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration
|
|
COMMAND_ENABLE = no # Commands for debug and configuration
|
|
CONSOLE_ENABLE= no # Console for debug
|
|
EXTRAKEY_ENABLE = yes # Audio control and System control
|
|
MOUSEKEY_ENABLE = yes # Mouse keys
|
|
NKRO_ENABLE = yes # USB Nkey Rollover -
|
|
|
|
RGBLIGHT_ENABLE = no
|
|
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
|
UNICODE_ENABLE = yes
|
|
TAP_DANCE_ENABLE = yes
|