summaryrefslogtreecommitdiffstats
path: root/users/mechmerlin/config.h
diff options
context:
space:
mode:
authorMechMerlin <30334081+mechmerlin@users.noreply.github.com>2019-02-28 20:37:34 +0100
committerDrashna Jaelre <drashna@live.com>2019-02-28 20:37:34 +0100
commita872faa53e1b9b9651d3f6ffe6d671e0e211309c (patch)
treee51e072580b64d1d989b62825ede4ca73e1796f7 /users/mechmerlin/config.h
parent3ac3bb9b5e5fb2363983f9b0d0fcb38d7148ac16 (diff)
downloadqmk_firmware-a872faa53e1b9b9651d3f6ffe6d671e0e211309c.tar.gz
qmk_firmware-a872faa53e1b9b9651d3f6ffe6d671e0e211309c.tar.xz
[Keymap] Userspace Keymap Updates (#5215)
* enable velocikey for my userspace and explicitly for my 75% layout * add guards to only turn on RGB stuff if the RGB pin is actually defined * update 60_ansi keymap * update the 60_ansi_split_bs_rshift keymap * update 66_ansi keymap * update docs * Update layouts/community/60_ansi/mechmerlin-ansi/keymap.c Co-Authored-By: mechmerlin <30334081+mechmerlin@users.noreply.github.com> * Update layouts/community/60_ansi_split_bs_rshift/mechmerlin-split/keymap.c Co-Authored-By: mechmerlin <30334081+mechmerlin@users.noreply.github.com> * Update layouts/community/60_ansi_split_bs_rshift/mechmerlin-split/keymap.c Co-Authored-By: mechmerlin <30334081+mechmerlin@users.noreply.github.com> * Update layouts/community/66_ansi/mechmerlin/keymap.c Co-Authored-By: mechmerlin <30334081+mechmerlin@users.noreply.github.com> * Update layouts/community/60_ansi_split_bs_rshift/mechmerlin-split/keymap.c Co-Authored-By: mechmerlin <30334081+mechmerlin@users.noreply.github.com> * Update layouts/community/60_ansi/mechmerlin-ansi/keymap.c Co-Authored-By: mechmerlin <30334081+mechmerlin@users.noreply.github.com> * Update layouts/community/60_ansi/mechmerlin-ansi/keymap.c Co-Authored-By: mechmerlin <30334081+mechmerlin@users.noreply.github.com> * remove my attempt to find a good way to detect this * move audio clicky into user space and do feature setting per keyboard * fixup 66_ansi keymap * update changelog * update readme
Diffstat (limited to 'users/mechmerlin/config.h')
-rw-r--r--users/mechmerlin/config.h24
1 files changed, 23 insertions, 1 deletions
diff --git a/users/mechmerlin/config.h b/users/mechmerlin/config.h
index 3d58c230a..3c45162bc 100644
--- a/users/mechmerlin/config.h
+++ b/users/mechmerlin/config.h
@@ -1,5 +1,27 @@
#pragma once
#ifdef RGBLIGHT_ENABLE
-#define RGBLIGHT_SLEEP
+ #define RGBLIGHT_SLEEP
+ #define RGBLIGHT_ANIMATIONS
#endif // RGBLIGHT_ENABLE
+
+#ifdef AUDIO_CLICKY
+ #define AUDIO_CLICKY_ON
+ #define AUDIO_CLICKY_FREQ_DEFAULT 261.63f
+ #define AUDIO_CLICKY_FREQ_MIN 65.41f
+ #define AUDIO_CLICKY_FREQ_MAX 1046.5f
+ //#define AUDIO_CLICKY_FREQ_FACTOR 1.18921f
+ //#define AUDIO_CLICKY_FREQ_FACTOR 2.71828f // e
+ #define AUDIO_CLICKY_FREQ_FACTOR 1.61803f // golden ratio
+ #define AUDIO_CLICKY_FREQ_RANDOMNESS 17.0f
+#endif
+
+// Enable features depending on keyboard
+#if defined(KEYBOARD_clueboard_66_hotswap_prototype)
+ #define RGBLIGHT_ENABLE
+ #define AUDIO_CLICKY
+#elif defined(KEYBOARD_clueboard_66_hotswap_gen1)
+ #define AUDIO_CLICKY
+#else
+ #define RGBLIGHT_ENABLE
+#endif