summaryrefslogtreecommitdiff
path: root/keyboards/preonic/keymaps/dudeofawesome/config.h
diff options
context:
space:
mode:
authorLouis Orleans <louis@orleans.io>2018-03-01 07:48:15 -0800
committerskullydazed <skullydazed@users.noreply.github.com>2018-03-01 07:48:15 -0800
commitd7f46f346685dc772ff3f13890d70865d65d748c (patch)
tree2ba6ecb92f00a1783c19f0cd7a1baf4481c74e4e /keyboards/preonic/keymaps/dudeofawesome/config.h
parent452d23da5267899933ca336ae91e7b297d5dfb0b (diff)
layout(preonic): dudeofawesome's layout (#2449)
* 🎉 duplicate default Preonic keymap * ✨ add Workman layout * 🚚 swap backspace and delete * ✨ enable hold enter for shift * 🚚 swap media play and next * 💄 use Planck startup sound * 💄 add Workman layer sound * ✨ add numpad layer * 💄 add new workman sound * 📝 add README * 🎨 fix layout formatting * 📝 add image of numpad layer * 📦 changing chibios submodule version to match upstream/master's version * ✨ add caps lock key on adjust layer * ✨ reworking numpad layer to match a real numpad * ✨ add double tap to activate numpad * 📝 fix layout comments * 📝 update numpad layer render * ✨ adding operator keys to left hand on numpad * 🎨 shorten numpad keycodes
Diffstat (limited to 'keyboards/preonic/keymaps/dudeofawesome/config.h')
-rw-r--r--keyboards/preonic/keymaps/dudeofawesome/config.h53
1 files changed, 53 insertions, 0 deletions
diff --git a/keyboards/preonic/keymaps/dudeofawesome/config.h b/keyboards/preonic/keymaps/dudeofawesome/config.h
new file mode 100644
index 0000000000..566fac3ed3
--- /dev/null
+++ b/keyboards/preonic/keymaps/dudeofawesome/config.h
@@ -0,0 +1,53 @@
+#ifndef CONFIG_USER_H
+#define CONFIG_USER_H
+
+#include "config_common.h"
+
+#define TAPPING_TOGGLE 2
+
+#ifdef AUDIO_ENABLE
+ #define STARTUP_SONG SONG(PLANCK_SOUND)
+ // #define STARTUP_SONG SONG(NO_SOUND)
+
+ #define WORKMAN_SOUND \
+ E__NOTE(_GS7), \
+ ED_NOTE(_E7), \
+ S__NOTE(_REST), \
+ E__NOTE(_A6), \
+ S__NOTE(_REST), \
+ ED_NOTE(_GS6),
+
+ #define DEFAULT_LAYER_SONGS { SONG(QWERTY_SOUND), \
+ SONG(WORKMAN_SOUND), \
+ SONG(COLEMAK_SOUND), \
+ SONG(DVORAK_SOUND) \
+ }
+#endif
+
+#define MUSIC_MASK (keycode != KC_NO)
+
+/*
+ * MIDI options
+ */
+
+/* Prevent use of disabled MIDI features in the keymap */
+//#define MIDI_ENABLE_STRICT 1
+
+/* enable basic MIDI features:
+ - MIDI notes can be sent when in Music mode is on
+*/
+
+#define MIDI_BASIC
+
+/* enable advanced MIDI features:
+ - MIDI notes can be added to the keymap
+ - Octave shift and transpose
+ - Virtual sustain, portamento, and modulation wheel
+ - etc.
+*/
+//#define MIDI_ADVANCED
+
+/* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */
+//#define MIDI_TONE_KEYCODE_OCTAVES 2
+
+#endif