summaryrefslogtreecommitdiff
path: root/keyboards/minimacro5
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2021-05-27 05:31:07 +0000
committerQMK Bot <hello@qmk.fm>2021-05-27 05:31:07 +0000
commit726368ce6709bb6bd2e97309f777e10ee89568a3 (patch)
tree61d4edbb27f1f3ea32a9c4fb681cce7a5a93847e /keyboards/minimacro5
parent995c9dff49c884bc6261ea7a9880e9e259778d7a (diff)
parent9da95bc3abc2d5682aea917e56abfeae30a7980f (diff)
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'keyboards/minimacro5')
-rw-r--r--keyboards/minimacro5/keymaps/devdev/keymap.c126
-rw-r--r--keyboards/minimacro5/keymaps/devdev/rules.mk2
2 files changed, 128 insertions, 0 deletions
diff --git a/keyboards/minimacro5/keymaps/devdev/keymap.c b/keyboards/minimacro5/keymaps/devdev/keymap.c
new file mode 100644
index 0000000000..dc5a9b0de8
--- /dev/null
+++ b/keyboards/minimacro5/keymaps/devdev/keymap.c
@@ -0,0 +1,126 @@
+/* Copyright 2020 Dane Evans
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+// MINI MACRO 5
+
+#include QMK_KEYBOARD_H
+
+enum layers {
+ _MAIN,
+ _MEDIA,
+ _DISCORD,
+ _PHOTOSHOP
+};
+
+// Tap Dance declarations
+enum tap_dances{
+ TD_TO_DISCORD,
+ TD_TO_PHOTOSHOP,
+ TD_TO_MEDIA,
+ TD_TO_MAIN,
+ TD_RESET_SLIDER
+
+};
+
+
+void encoder_update_user(uint8_t index, bool clockwise) {
+ if (index == 0) { /* First encoder*/
+ switch(biton32(layer_state)){
+ case _MAIN:
+ if (clockwise) {
+ tap_code(KC_VOLU);
+ } else {
+ tap_code(KC_VOLD);
+ }
+ break;
+ case _MEDIA:
+ if (clockwise) {
+ tap_code(KC_VOLU);
+ } else {
+ tap_code(KC_VOLD);
+ }
+ break;
+ case _DISCORD:
+ if (clockwise) {
+ tap_code(KC_VOLU);
+ } else {
+ tap_code(KC_VOLD);
+ }
+ break;
+ case _PHOTOSHOP:
+ if (clockwise) {
+ tap_code(KC_UP);
+ } else {
+ tap_code(KC_DOWN);
+ }
+ break;
+ default:
+ if (clockwise) {
+ tap_code(KC_VOLU);
+ } else {
+ tap_code(KC_VOLD);
+ }
+ break;
+ }
+ }
+}
+
+//
+const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { //buttion closest to usb is first
+ [_MAIN] = LAYOUT_ortho_1x5(
+ TD(TD_TO_DISCORD), TO(_DISCORD), KC_C, RGB_TOG, TD(TD_TO_PHOTOSHOP)
+ ),
+ [_MEDIA] = LAYOUT_ortho_1x5(
+ TD(TD_TO_MAIN), KC_MEDIA_PREV_TRACK, KC_MEDIA_NEXT_TRACK, KC_MEDIA_PLAY_PAUSE, KC_MEDIA_STOP
+ ),
+ [_DISCORD] = LAYOUT_ortho_1x5(
+ TD(TD_TO_MAIN), TD(TD_TO_MEDIA), KC_Q, KC_R, MEH(KC_UP)
+ )
+ ,
+ [_PHOTOSHOP] = LAYOUT_ortho_1x5(
+ TD(TD_RESET_SLIDER) , C(KC_Z), C(KC_Y), KC_P, KC_G
+ )
+};
+
+layer_state_t layer_state_set_user(layer_state_t state) {
+
+ if (layer_state_cmp(state, _MAIN)) // this one not working
+ rgblight_sethsv_at(HSV_GREEN, 0);
+ if (layer_state_cmp(state, _MEDIA))
+ rgblight_sethsv_at(HSV_RED, 0);
+ if (layer_state_cmp(state, _DISCORD))
+ rgblight_sethsv_at(HSV_BLUE, 0);
+ if (layer_state_cmp(state, _PHOTOSHOP))
+ rgblight_sethsv_at(HSV_PURPLE, 0);
+ return state;
+}
+
+void keyboard_post_init_user(void) {
+ //rgblight_mode(1);
+ rgblight_sethsv_at(HSV_GREEN, 0);
+}
+
+// Tap Dance definitions
+qk_tap_dance_action_t tap_dance_actions[] = {
+ // Tap once for Escape, twice for Caps Lock
+ [TD_TO_DISCORD] = ACTION_TAP_DANCE_LAYER_MOVE(KC_MUTE, _DISCORD),
+ [TD_TO_PHOTOSHOP] = ACTION_TAP_DANCE_LAYER_MOVE(KC_E, _PHOTOSHOP),
+ [TD_TO_MEDIA] = ACTION_TAP_DANCE_LAYER_MOVE(KC_E, _MEDIA),
+ [TD_TO_MAIN] = ACTION_TAP_DANCE_LAYER_MOVE(KC_MUTE, _MAIN),
+ [TD_RESET_SLIDER] = ACTION_TAP_DANCE_LAYER_MOVE(KC_0, _MAIN)
+};
+
+
+
diff --git a/keyboards/minimacro5/keymaps/devdev/rules.mk b/keyboards/minimacro5/keymaps/devdev/rules.mk
new file mode 100644
index 0000000000..1c1ed316a0
--- /dev/null
+++ b/keyboards/minimacro5/keymaps/devdev/rules.mk
@@ -0,0 +1,2 @@
+RGBLIGHT_ENABLE = yes
+TAP_DANCE_ENABLE = yes \ No newline at end of file