~ruther/qmk_firmware

ref: 87b4bc17edcf46f06a085a38130b9ff865b5bd39 qmk_firmware/keyboards/gmmk/pro/rev1/ansi/keymaps/mike1808/README.md -rw-r--r-- 902 bytes
87b4bc17 — QMK Bot Merge remote-tracking branch 'origin/master' into develop 1 year, 7 months ago

#QMK layout for gmmk/pro

#Secrets

The format is the same as drashna's secrets implementation. Create a secret.h and define your secrets like this:

static const char* secrets[] = {"secret1", "secret2", "secret3", "secret4", "secret5"};

#Rotary encoder knob

You can hookup your encoder functions by defining new encoder states in encoder.h, then in encoder.c assign static variable state your new state depending on your desired condition and add callbacks to encoder_mapping array.

#RGB Matrix Ledmaps

RGB Matrix ledmaps is the future allowing you assign colors to individual keys on every keymap layer.

You can see some examples of my usage in the bottom of keymap.c.

Color defines are just HSV colors wrapped in curly braces, like #define RED { HSV_RED }.

Do not follow this link