From 30c04f92bd93287d73c6518d150db4420a9128ab Mon Sep 17 00:00:00 2001
From: tipsycod3r <68339225+tipsycod3r@users.noreply.github.com>
Date: Mon, 14 Mar 2022 15:05:53 +0800
Subject: [PATCH] added tipsytypist-vial keymap to Reviung39 (#133)
---
.../keymaps/tipsytypist-vial/config.h | 31 +++
.../keymaps/tipsytypist-vial/keymap.c | 50 +++++
.../keymaps/tipsytypist-vial/rules.mk | 11 +
.../keymaps/tipsytypist-vial/vial.json | 209 ++++++++++++++++++
4 files changed, 301 insertions(+)
create mode 100644 keyboards/reviung/reviung39/keymaps/tipsytypist-vial/config.h
create mode 100644 keyboards/reviung/reviung39/keymaps/tipsytypist-vial/keymap.c
create mode 100644 keyboards/reviung/reviung39/keymaps/tipsytypist-vial/rules.mk
create mode 100644 keyboards/reviung/reviung39/keymaps/tipsytypist-vial/vial.json
diff --git a/keyboards/reviung/reviung39/keymaps/tipsytypist-vial/config.h b/keyboards/reviung/reviung39/keymaps/tipsytypist-vial/config.h
new file mode 100644
index 0000000000..9fb05bb49b
--- /dev/null
+++ b/keyboards/reviung/reviung39/keymaps/tipsytypist-vial/config.h
@@ -0,0 +1,31 @@
+/* Copyright 2019 gtips
+ *
+ * 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 .
+ */
+
+#pragma once
+#ifndef CONFIG_USER_H
+#define CONFIG_USER_H
+#define VIAL_KEYBOARD_UID {0xC0, 0xED, 0x8D, 0x24, 0x88, 0x5F, 0xD0, 0x9F}
+#define VIAL_UNLOCK_COMBO_ROWS { 0, 5 }
+#define VIAL_UNLOCK_COMBO_COLS { 0, 5 }
+
+#include "../../config.h"
+
+#define TAPPING_TERM 175
+#define TAPPING_TOGGLE 3
+
+#endif
+
+// place overrides here
\ No newline at end of file
diff --git a/keyboards/reviung/reviung39/keymaps/tipsytypist-vial/keymap.c b/keyboards/reviung/reviung39/keymaps/tipsytypist-vial/keymap.c
new file mode 100644
index 0000000000..0bef702971
--- /dev/null
+++ b/keyboards/reviung/reviung39/keymaps/tipsytypist-vial/keymap.c
@@ -0,0 +1,50 @@
+/* Copyright 2019 gtips
+ *
+ * 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 .
+ */
+#include QMK_KEYBOARD_H
+
+enum layer_names {
+ _BASE,
+ _FNNO,
+ _ADJUST,
+};
+
+#define TAPPING_TOGGLE 3
+#define _BASE 0
+#define _FNNO 1
+#define _ADJUST 2
+
+const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
+ [_BASE] = LAYOUT_reviung39(
+ KC_GESC, KC_Q, KC_D, KC_R, KC_W, KC_B, KC_J, KC_F, KC_U, KC_P, KC_SCLN, KC_BSPC, \
+ LSFT_T(KC_TAB), KC_A, KC_S, LGUI_T(KC_H), LALT_T(KC_T), KC_G, KC_Y, RALT_T(KC_N), KC_E, KC_O, KC_I, KC_QUOT, \
+ KC_LCTL, KC_Z, KC_X, KC_M, KC_C, KC_V, KC_K, KC_L, KC_COMM, KC_DOT, KC_SLSH, RSFT_T(KC_ENT), \
+ TT(1), KC_SPC, TT(2)
+ ),
+
+ [_FNNO] = LAYOUT_reviung39(
+ KC_GRV, KC_F1, KC_F2, KC_F3, KC_F4, KC_LBRC, KC_RBRC, KC_7, KC_8, KC_9, KC_0, KC_DEL, \
+ KC_TRNS, KC_F5, KC_F6, KC_F7, KC_F8, KC_MINS, KC_EQL, RALT_T(KC_4), RGUI_T(KC_5), KC_6, KC_HOME, KC_END, \
+ KC_TRNS, KC_F9, KC_F10, KC_F11, KC_F12, KC_PSCR, KC_BSLS, KC_1, KC_2, KC_3, KC_TRNS, KC_TRNS,
+ KC_TRNS, KC_BSPC, KC_PDOT
+ ),
+
+ [_ADJUST] = LAYOUT_reviung39(
+ KC_GESC, KC_NLCK, KC_P7, KC_P8, KC_P9, KC_P0, KC_NO, KC_PGUP, KC_UP, KC_PGDOWN, KC_NO, KC_DEL, \
+ KC_TRNS, KC_NO, KC_P4, LGUI_T(KC_P5), LALT_T(KC_P6), KC_BRIU, KC_VOLU, KC_LEFT, KC_DOWN, KC_RGHT, KC_NO, KC_NO, \
+ KC_LCTL, KC_NO, KC_P1, KC_P2, KC_P3, KC_BRID, KC_VOLD, KC_NO, KC_NO, KC_NO, KC_NO, KC_TRNS, \
+ KC_TRNS, KC_NO, KC_TRNS
+ ),
+};
diff --git a/keyboards/reviung/reviung39/keymaps/tipsytypist-vial/rules.mk b/keyboards/reviung/reviung39/keymaps/tipsytypist-vial/rules.mk
new file mode 100644
index 0000000000..54e4f5ce21
--- /dev/null
+++ b/keyboards/reviung/reviung39/keymaps/tipsytypist-vial/rules.mk
@@ -0,0 +1,11 @@
+RGBLIGHT_ENABLE = no
+OLED_DRIVER_ENABLE = yes
+BOOTMAGIC_ENABLE = yes
+MOUSEKEY_ENABLE = no
+EXTRAKEY_ENABLE = yes
+CONSOLE_ENABLE = no
+COMMAND_ENABLE = yes
+TAP_DANCE_ENABLE = yes
+VIA_ENABLE = yes
+VIAL_ENABLE = yes
+EXTRAFLAGS += -flto
\ No newline at end of file
diff --git a/keyboards/reviung/reviung39/keymaps/tipsytypist-vial/vial.json b/keyboards/reviung/reviung39/keymaps/tipsytypist-vial/vial.json
new file mode 100644
index 0000000000..666920d724
--- /dev/null
+++ b/keyboards/reviung/reviung39/keymaps/tipsytypist-vial/vial.json
@@ -0,0 +1,209 @@
+{
+ "name": "Reviung39",
+ "vendorId": "0x03EB",
+ "productId": "0x2FF4",
+ "lighting": "none",
+ "matrix": { "rows": 7, "cols": 6 },
+ "layouts": {
+ "keymap":
+ [
+ [
+ {
+ "x": 3
+ },
+ "0,3",
+ {
+ "x": 5
+ },
+ "3,2"
+ ],
+ [
+ {
+ "y": -0.85,
+ "x": 2
+ },
+ "0,2",
+ {
+ "x": 1
+ },
+ "0,4",
+ {
+ "x": 3
+ },
+ "3,1",
+ {
+ "x": 1
+ },
+ "3,3"
+ ],
+ [
+ {
+ "y": -0.7999999999999999,
+ "x": 1
+ },
+ "0,1",
+ {
+ "x": 3
+ },
+ "0,5",
+ {
+ "x": 1
+ },
+ "3,0",
+ {
+ "x": 3
+ },
+ "3,4"
+ ],
+ [
+ {
+ "y": -0.8500000000000001,
+ "c": "#777777"
+ },
+ "0,0",
+ {
+ "x": 11
+ },
+ "3,5"
+ ],
+ [
+ {
+ "y": -0.5,
+ "x": 3,
+ "c": "#cccccc"
+ },
+ "1,3",
+ {
+ "x": 5
+ },
+ "4,2"
+ ],
+ [
+ {
+ "y": -0.8500000000000001,
+ "x": 2
+ },
+ "1,2",
+ {
+ "x": 1
+ },
+ "1,4",
+ {
+ "x": 3
+ },
+ "4,1",
+ {
+ "x": 1
+ },
+ "4,3"
+ ],
+ [
+ {
+ "y": -0.7999999999999998,
+ "x": 1
+ },
+ "1,1",
+ {
+ "x": 3
+ },
+ "1,5",
+ {
+ "x": 1
+ },
+ "4,0",
+ {
+ "x": 3
+ },
+ "4,4"
+ ],
+ [
+ {
+ "y": -0.8500000000000001,
+ "c": "#aaaaaa"
+ },
+ "1,0",
+ {
+ "x": 11
+ },
+ "4,5"
+ ],
+ [
+ {
+ "y": -0.5,
+ "x": 3,
+ "c": "#cccccc"
+ },
+ "2,3",
+ {
+ "x": 5
+ },
+ "5,2"
+ ],
+ [
+ {
+ "y": -0.8500000000000001,
+ "x": 2
+ },
+ "2,2",
+ {
+ "x": 1
+ },
+ "2,4",
+ {
+ "x": 3
+ },
+ "5,1",
+ {
+ "x": 1
+ },
+ "5,3"
+ ],
+ [
+ {
+ "y": -0.7999999999999998,
+ "x": 1
+ },
+ "2,1",
+ {
+ "x": 3
+ },
+ "2,5",
+ {
+ "x": 1
+ },
+ "5,0",
+ {
+ "x": 3
+ },
+ "5,4"
+ ],
+ [
+ {
+ "y": -0.8500000000000001,
+ "c": "#aaaaaa"
+ },
+ "2,0",
+ {
+ "x": 11
+ },
+ "5,5"
+ ],
+ [
+ {
+ "x": 4.25,
+ "w": 1.25
+ },
+ "6,0",
+ {
+ "w": 2
+ },
+ "6,1",
+ {
+ "w": 1.25
+ },
+ "6,2"
+ ]
+]
+
+ }
+}
\ No newline at end of file