A keyboards/millet/doksin/info.json => keyboards/millet/doksin/info.json +31 -0
  
@@ 0,0 1,31 @@
+{
+    "manufacturer": "millet",
+    "keyboard_name": "doksin",
+    "maintainer": "millet",
+    "bootloader": "atmel-dfu",
+    "features": {
+        "bootmagic": true,
+        "extrakey": true,
+        "mousekey": true
+    },
+    "matrix_pins": {
+        "direct": [
+            ["D4"]
+        ]
+    },
+    "processor": "atmega32u2",
+    "url": "",
+    "usb": {
+        "device_version": "0.0.1",
+        "pid": "0x1919",
+        "vid": "0xBDD1"
+    },
+    "community_layouts": ["ortho_1x1"],
+    "layouts": {
+        "LAYOUT_ortho_1x1": {
+            "layout": [
+                {"matrix": [0, 0], "x": 0, "y": 0}
+            ]
+        }
+    }
+}<
\ No newline at end of file
 
A keyboards/millet/doksin/keymaps/default/keymap.c => keyboards/millet/doksin/keymaps/default/keymap.c +22 -0
  
@@ 0,0 1,22 @@
+/* Copyright 2019 Biacco42
+ *
+ * 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/>.
+ */
+#include QMK_KEYBOARD_H
+
+const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
+  [0] = LAYOUT_ortho_1x1(
+    KC_1
+  ),
+};
 
A keyboards/millet/doksin/keymaps/default/readme.md => keyboards/millet/doksin/keymaps/default/readme.md +1 -0
  
@@ 0,0 1,1 @@
+# default keymap for DOKSIN<
\ No newline at end of file
 
A keyboards/millet/doksin/keymaps/via/keymap.c => keyboards/millet/doksin/keymaps/via/keymap.c +23 -0
  
@@ 0,0 1,23 @@
+/* Copyright 2019 Biacco42
+ *
+ * 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/>.
+ */
+#include QMK_KEYBOARD_H
+
+const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
+  [0] = LAYOUT_ortho_1x1( /* Base */
+    KC_1
+  ),
+
+};
 
A keyboards/millet/doksin/keymaps/via/rules.mk => keyboards/millet/doksin/keymaps/via/rules.mk +1 -0
  
@@ 0,0 1,1 @@
+VIA_ENABLE = yes
 
A keyboards/millet/doksin/readme.md => keyboards/millet/doksin/readme.md +19 -0
  
@@ 0,0 1,19 @@
+# DOKСИН
+
+
+
+Can be used as a keyboard...
+
+* Keyboard Maintainer: [millet](https://github.com/milletmilletmilletmilletmilletmilletmil)
+* Hardware Supported: The DOKСИН PCB
+* Hardware Availability: None
+
+Make example for this keyboard (after setting up your build environment):
+
+    make millet/doksin:default
+
+Flashing example for this keyboard:
+
+    make millet/doksin:default:flash
+
+See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).
 
A keyboards/millet/doksin/rules.mk => keyboards/millet/doksin/rules.mk +0 -0