moved to handwired folder
This commit is contained in:
parent
288bf4faa3
commit
959c48e146
17 changed files with 3 additions and 3 deletions
25
keyboards/handwired/minorca/keymaps/rgb/Makefile
Normal file
25
keyboards/handwired/minorca/keymaps/rgb/Makefile
Normal file
|
@ -0,0 +1,25 @@
|
|||
|
||||
|
||||
# Build Options
|
||||
# change to "no" to disable the options, or define them in the Makefile in
|
||||
# the appropriate keymap folder that will get included automatically
|
||||
#
|
||||
BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000)
|
||||
MOUSEKEY_ENABLE = yes # Mouse keys(+4700)
|
||||
EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
|
||||
CONSOLE_ENABLE = no # Console for debug(+400)
|
||||
COMMAND_ENABLE = yes # Commands for debug and configuration
|
||||
NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
|
||||
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
|
||||
MIDI_ENABLE = no # MIDI controls
|
||||
AUDIO_ENABLE = no # Audio output on port C6
|
||||
UNICODE_ENABLE = no # Unicode
|
||||
BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
|
||||
RGBLIGHT_ENABLE = yes # Enable WS2812 RGB underlight. Do not enable this with audio at the same time.
|
||||
|
||||
# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
|
||||
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
||||
|
||||
ifndef QUANTUM_DIR
|
||||
include ../../../../../Makefile
|
||||
endif
|
20
keyboards/handwired/minorca/keymaps/rgb/config.h
Normal file
20
keyboards/handwired/minorca/keymaps/rgb/config.h
Normal file
|
@ -0,0 +1,20 @@
|
|||
#ifndef CONFIG_USER_H
|
||||
#define CONFIG_USER_H
|
||||
|
||||
#include "../../config.h"
|
||||
|
||||
/* bootmagic salt key */
|
||||
#define BOOTMAGIC_KEY_SALT KC_ESC
|
||||
|
||||
/* skip bootmagic and eeconfig */
|
||||
#define BOOTMAGIC_KEY_SKIP KC_SPACE
|
||||
|
||||
/* ws2812 RGB LED */
|
||||
#define RGB_DI_PIN D5
|
||||
#define RGBLIGHT_TIMER
|
||||
#define RGBLED_NUM 13 // Number of LEDs
|
||||
#define RGBLIGHT_HUE_STEP 10
|
||||
#define RGBLIGHT_SAT_STEP 17
|
||||
#define RGBLIGHT_VAL_STEP 17
|
||||
|
||||
#endif
|
BIN
keyboards/handwired/minorca/keymaps/rgb/example.jpg
Normal file
BIN
keyboards/handwired/minorca/keymaps/rgb/example.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 71 KiB |
65
keyboards/handwired/minorca/keymaps/rgb/keymap.c
Normal file
65
keyboards/handwired/minorca/keymaps/rgb/keymap.c
Normal file
|
@ -0,0 +1,65 @@
|
|||
// This is the canonical layout file for the Quantum project. If you want to add another keyboard,
|
||||
// this is the style you want to emulate.
|
||||
|
||||
#include "minorca.h"
|
||||
#include "action_layer.h"
|
||||
#include "eeconfig.h"
|
||||
|
||||
extern keymap_config_t keymap_config;
|
||||
|
||||
// Each layer gets a name for readability, which is then used in the keymap matrix below.
|
||||
// The underscores don't mean anything - you can have a layer called STUFF or any other name.
|
||||
// Layer names don't all need to be of the same length, obviously, and you can also skip them
|
||||
// entirely and just use numbers.
|
||||
#define _QWERTY 0
|
||||
#define _LOWER 1
|
||||
#define _RAISE 2
|
||||
#define _TB 3
|
||||
|
||||
// Macro name shortcuts
|
||||
#define QWERTY M(_QWERTY)
|
||||
#define LOWER M(_LOWER)
|
||||
#define RAISE M(_RAISE)
|
||||
|
||||
// Fillers to make layering more clear
|
||||
#define _______ KC_TRNS
|
||||
#define XXXXXXX KC_NO
|
||||
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
|
||||
[_QWERTY] = { /* Qwerty */
|
||||
{KC_ESC, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC},
|
||||
{FUNC(0), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, XXXXXXX, KC_QUOT},
|
||||
{KC_LSFT, XXXXXXX, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, FUNC(1)},
|
||||
{KC_LCTL, XXXXXXX, KC_LGUI, KC_LALT, FUNC(2), XXXXXXX, XXXXXXX, FUNC(3), XXXXXXX, KC_RALT, KC_APP, KC_RCTL}
|
||||
},
|
||||
|
||||
[_RAISE] = {
|
||||
{S(KC_GRV), S(KC_1), S(KC_2), S(KC_3), S(KC_4), S(KC_5), S(KC_6), S(KC_7), S(KC_8), S(KC_9), S(KC_0), KC_BSPC},
|
||||
{KC_TRNS, KC_TRNS, KC_TRNS, KC_PAUSE, KC_TRNS, KC_TRNS, KC_TRNS, S(KC_MINS), S(KC_EQL), S(KC_LBRC), XXXXXXX, S(KC_BSLS)},
|
||||
{KC_TRNS, XXXXXXX, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_ENT},
|
||||
{KC_TRNS, XXXXXXX, KC_TRNS, KC_TRNS, KC_TRNS, XXXXXXX, XXXXXXX, KC_TRNS, XXXXXXX, KC_MNXT, KC_MUTE, KC_MPLY}
|
||||
},
|
||||
|
||||
[_LOWER] = {
|
||||
{KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_DELETE},
|
||||
{KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_MINS, KC_EQL, KC_LBRC, XXXXXXX, KC_BSLS},
|
||||
{KC_TRNS, XXXXXXX, KC_F11, KC_F12, KC_F13, KC_F14, KC_F15, KC_F16, KC_F17, KC_F18, KC_PGUP, KC_ENT},
|
||||
{KC_TRNS, XXXXXXX, KC_TRNS, KC_TRNS, KC_TRNS, XXXXXXX, XXXXXXX, KC_TRNS, XXXXXXX, KC_HOME, KC_PGDN, KC_END}
|
||||
},
|
||||
|
||||
[_TB] = { /* Tab */
|
||||
{KC_ESC, KC_CALC, KC_WHOM, KC_MAIL, KC_MYCM, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_PSCR, KC_TRNS},
|
||||
{KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, XXXXXXX, KC_TRNS},
|
||||
{KC_TRNS, XXXXXXX, RGB_TOG, RGB_MOD, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, RGB_VAI, RGB_VAD, KC_UP, KC_ENT},
|
||||
{BL_STEP, XXXXXXX, KC_TRNS, KC_TRNS, KC_TRNS, XXXXXXX, XXXXXXX, KC_TRNS, XXXXXXX, KC_LEFT, KC_DOWN, KC_RGHT}
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
const uint16_t PROGMEM fn_actions[] = {
|
||||
[0] = ACTION_LAYER_TAP_KEY(_TB, KC_TAB),
|
||||
[1] = ACTION_MODS_TAP_KEY(MOD_RSFT, KC_ENT),
|
||||
[2] = ACTION_LAYER_TAP_KEY(_RAISE, KC_SPC),
|
||||
[3] = ACTION_LAYER_TAP_KEY(_LOWER, KC_SPC),
|
||||
};
|
25
keyboards/handwired/minorca/keymaps/rgb/readme.md
Normal file
25
keyboards/handwired/minorca/keymaps/rgb/readme.md
Normal file
|
@ -0,0 +1,25 @@
|
|||
#RGB backlight for MinOrca
|
||||
|
||||

|
||||
|
||||
Example of adding WS2812b LEDs to a MinOrca.
|
||||
|
||||
http://www.40percent.club/2016/08/tiny-whale.html
|
||||
|
||||
The keymap is a work in progress. The RGB functions are accessed by holding down the TAB key.
|
||||
|
||||
* Tab + Z Toggle on/off
|
||||
* Tab + X Mode
|
||||
* Tab + C Hue+
|
||||
* Tab + V Hue-
|
||||
* Tab + B Saturation+
|
||||
* Tab + N Saturation-
|
||||
* Tab + M Brightness+
|
||||
* Tab + , Brightness-
|
||||
|
||||
Example wiring:
|
||||
|
||||
WS2812 data pin is connected to D5
|
||||
|
||||

|
||||

|
BIN
keyboards/handwired/minorca/keymaps/rgb/wiring1.jpg
Normal file
BIN
keyboards/handwired/minorca/keymaps/rgb/wiring1.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 117 KiB |
BIN
keyboards/handwired/minorca/keymaps/rgb/wiring2.jpg
Normal file
BIN
keyboards/handwired/minorca/keymaps/rgb/wiring2.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 93 KiB |
Loading…
Add table
Add a link
Reference in a new issue