diff --git a/keyboards/yunzii/al68/al68.c b/keyboards/yunzii/al68/al68.c
new file mode 100644
index 00000000000..3e67da05020
--- /dev/null
+++ b/keyboards/yunzii/al68/al68.c
@@ -0,0 +1,55 @@
+// // /* Copyright 2022 Jacky
+// // *
+// // * 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 "quantum.h"
+#include "uart.h"
+#include "common/smart_ble.h"
+#include "al68.h"
+
+
+void keyboard_pre_init_kb(void) {
+ AFIO->MAPR = (AFIO->MAPR & ~AFIO_MAPR_SWJ_CFG_Msk);
+ AFIO->MAPR|= AFIO_MAPR_SWJ_CFG_DISABLE; //diable JTAG (GD32 different to STM32)
+ setPinOutput(A8);
+ writePinHigh(A8); //ENABLE USB
+ uart_init(460800);
+ wait_ms(400);
+ // debug_enable=true;
+ // debug_keyboard=true;
+ // debug_matrix=true;
+ // debug_mouse=true;
+ setPinOutput(B8);
+ writePinLow(B8);
+}
+
+bool process_record_kb(uint16_t keycode, keyrecord_t* record)
+{
+ if (record->event.pressed){
+ if ((keycode>=KC_BLE1) && (keycode<=KC_24G))
+ {
+ WIRELESS_START(keycode-KC_USB);
+ return false;
+ }
+ else if (keycode == KC_USB)
+ {
+ WIRELESS_STOP();
+ return false;
+ }
+ }
+ return process_record_user(keycode, record);
+}
+
+
diff --git a/keyboards/yunzii/al68/al68.h b/keyboards/yunzii/al68/al68.h
new file mode 100644
index 00000000000..c68aa0aa142
--- /dev/null
+++ b/keyboards/yunzii/al68/al68.h
@@ -0,0 +1,27 @@
+// /* Copyright 2024 Jacky
+// *
+// * 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 .
+// */
+
+enum custom_keycodes {
+#ifdef VIA_ENABLE
+ KC_USB = QK_KB_0,
+#else
+ KC_USB = SAFE_RANGE,
+#endif
+ KC_BLE1,
+ KC_BLE2,
+ KC_BLE3,
+ KC_24G
+};
\ No newline at end of file
diff --git a/keyboards/yunzii/al68/config.h b/keyboards/yunzii/al68/config.h
new file mode 100644
index 00000000000..bd3d72b9d08
--- /dev/null
+++ b/keyboards/yunzii/al68/config.h
@@ -0,0 +1,23 @@
+/* Copyright 2022 Jacky
+ *
+ * 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
+
+#define WS2812_PWM_DRIVER PWMD4
+#define WS2812_PWM_CHANNEL 3
+#define WS2812_PWM_PAL_MODE 2
+#define WS2812_DMA_STREAM STM32_DMA1_STREAM7
+#define WS2812_DMA_CHANNEL 7
diff --git a/keyboards/yunzii/al68/halconf.h b/keyboards/yunzii/al68/halconf.h
new file mode 100644
index 00000000000..51161381540
--- /dev/null
+++ b/keyboards/yunzii/al68/halconf.h
@@ -0,0 +1,23 @@
+// /* Copyright 2024 Jacky
+// *
+// * 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
+
+//#define HAL_USE_SERIAL TRUE
+
+#define HAL_USE_PWM TRUE
+
+#include_next
\ No newline at end of file
diff --git a/keyboards/yunzii/al68/keyboard.json b/keyboards/yunzii/al68/keyboard.json
new file mode 100644
index 00000000000..7efa437f4b7
--- /dev/null
+++ b/keyboards/yunzii/al68/keyboard.json
@@ -0,0 +1,207 @@
+{
+ "manufacturer": "YUNZII Keyboard",
+ "keyboard_name": "AL68",
+ "maintainer": "Jeff",
+ "bootloader": "stm32duino",
+ "diode_direction": "ROW2COL",
+ "encoder": {
+ "rotary": [
+ {"pin_a": "A7", "pin_b": "A6"}
+ ]
+ },
+ "features": {
+ "bootmagic": true,
+ "console": true,
+ "encoder": true,
+ "extrakey": true,
+ "mousekey": true,
+ "nkro": true,
+ "rgb_matrix": true
+ },
+ "matrix_pins": {
+ "cols": ["B0", "B2", "B10", "B11", "B12", "B13", "B14", "B15", "A14", "B3", "A15", "B5", "B6", "B7", "C13"],
+ "rows": ["A0", "A1", "A2", "A3", "A4"]
+ },
+ "processor": "STM32F103",
+ "rgb_matrix": {
+ "animations": {
+ "band_pinwheel_sat": true,
+ "band_pinwheel_val": true,
+ "band_sat": true,
+ "band_spiral_sat": true,
+ "band_spiral_val": true,
+ "band_val": true,
+ "breathing": true,
+ "cycle_all": true,
+ "cycle_left_right": true,
+ "cycle_out_in": true,
+ "cycle_out_in_dual": true,
+ "cycle_pinwheel": true,
+ "cycle_spiral": true,
+ "cycle_up_down": true,
+ "dual_beacon": true,
+ "gradient_left_right": true,
+ "gradient_up_down": true,
+ "hue_breathing": true,
+ "hue_pendulum": true,
+ "hue_wave": true,
+ "rainbow_beacon": true,
+ "rainbow_moving_chevron": true,
+ "rainbow_pinwheels": true
+ },
+ "driver": "ws2812",
+ "layout": [
+ {"matrix": [4, 5], "x": 95, "y": 64, "flags": 4},
+ {"matrix": [4, 10], "x": 151, "y": 64, "flags": 4},
+ {"matrix": [4, 11], "x": 170, "y": 64, "flags": 4},
+ {"matrix": [4, 12], "x": 183, "y": 64, "flags": 4},
+ {"matrix": [4, 13], "x": 194, "y": 64, "flags": 4},
+ {"matrix": [4, 14], "x": 224, "y": 64, "flags": 4},
+ {"matrix": [3, 14], "x": 224, "y": 48, "flags": 4},
+ {"matrix": [3, 13], "x": 209, "y": 48, "flags": 4},
+ {"matrix": [3, 12], "x": 188, "y": 48, "flags": 4},
+ {"matrix": [3, 11], "x": 168, "y": 48, "flags": 4},
+ {"matrix": [3, 10], "x": 153, "y": 48, "flags": 4},
+ {"matrix": [3, 9], "x": 138, "y": 48, "flags": 4},
+ {"matrix": [3, 8], "x": 123, "y": 48, "flags": 4},
+ {"matrix": [3, 7], "x": 108, "y": 48, "flags": 4},
+ {"matrix": [3, 6], "x": 93, "y": 48, "flags": 4},
+ {"matrix": [3, 5], "x": 78, "y": 48, "flags": 4},
+ {"matrix": [3, 4], "x": 63, "y": 48, "flags": 4},
+ {"matrix": [3, 3], "x": 48, "y": 48, "flags": 4},
+ {"matrix": [3, 2], "x": 34, "y": 48, "flags": 4},
+ {"matrix": [4, 2], "x": 39, "y": 64, "flags": 4},
+ {"matrix": [4, 1], "x": 20, "y": 64, "flags": 4},
+ {"matrix": [4, 0], "x": 2, "y": 64, "flags": 4},
+ {"matrix": [3, 0], "x": 9, "y": 48, "flags": 4},
+ {"matrix": [2, 0], "x": 6, "y": 32, "flags": 4},
+ {"matrix": [2, 1], "x": 25, "y": 32, "flags": 4},
+ {"matrix": [2, 2], "x": 41, "y": 32, "flags": 4},
+ {"matrix": [2, 3], "x": 56, "y": 32, "flags": 4},
+ {"matrix": [2, 4], "x": 71, "y": 32, "flags": 4},
+ {"matrix": [2, 5], "x": 86, "y": 32, "flags": 4},
+ {"matrix": [2, 6], "x": 101, "y": 32, "flags": 4},
+ {"matrix": [2, 7], "x": 116, "y": 32, "flags": 4},
+ {"matrix": [2, 8], "x": 130, "y": 32, "flags": 4},
+ {"matrix": [2, 9], "x": 145, "y": 32, "flags": 4},
+ {"matrix": [2, 10], "x": 160, "y": 32, "flags": 4},
+ {"matrix": [2, 11], "x": 175, "y": 32, "flags": 4},
+ {"matrix": [2, 13], "x": 200, "y": 32, "flags": 4},
+ {"matrix": [2, 14], "x": 224, "y": 32, "flags": 4},
+ {"matrix": [1, 14], "x": 224, "y": 16, "flags": 4},
+ {"matrix": [1, 13], "x": 205, "y": 16, "flags": 4},
+ {"matrix": [1, 12], "x": 187, "y": 16, "flags": 4},
+ {"matrix": [1, 11], "x": 172, "y": 16, "flags": 4},
+ {"matrix": [1, 10], "x": 157, "y": 16, "flags": 4},
+ {"matrix": [1, 9], "x": 142, "y": 16, "flags": 4},
+ {"matrix": [1, 8], "x": 127, "y": 16, "flags": 4},
+ {"matrix": [1, 7], "x": 112, "y": 16, "flags": 4},
+ {"matrix": [1, 6], "x": 97, "y": 16, "flags": 4},
+ {"matrix": [1, 5], "x": 82, "y": 16, "flags": 4},
+ {"matrix": [1, 4], "x": 67, "y": 16, "flags": 4},
+ {"matrix": [1, 3], "x": 52, "y": 16, "flags": 4},
+ {"matrix": [1, 2], "x": 37, "y": 16, "flags": 4},
+ {"matrix": [1, 1], "x": 22, "y": 16, "flags": 4},
+ {"matrix": [1, 0], "x": 4, "y": 16, "flags": 4},
+ {"matrix": [0, 0], "x": 0, "y": 0, "flags": 4},
+ {"matrix": [0, 1], "x": 15, "y": 0, "flags": 4},
+ {"matrix": [0, 2], "x": 30, "y": 0, "flags": 4},
+ {"matrix": [0, 3], "x": 45, "y": 0, "flags": 4},
+ {"matrix": [0, 4], "x": 60, "y": 0, "flags": 4},
+ {"matrix": [0, 5], "x": 75, "y": 0, "flags": 4},
+ {"matrix": [0, 6], "x": 90, "y": 0, "flags": 4},
+ {"matrix": [0, 7], "x": 105, "y": 0, "flags": 4},
+ {"matrix": [0, 8], "x": 119, "y": 0, "flags": 4},
+ {"matrix": [0, 9], "x": 134, "y": 0, "flags": 4},
+ {"matrix": [0, 10], "x": 149, "y": 0, "flags": 4},
+ {"matrix": [0, 11], "x": 164, "y": 0, "flags": 4},
+ {"matrix": [0, 12], "x": 179, "y": 0, "flags": 4},
+ {"matrix": [0, 13], "x": 202, "y": 0, "flags": 4}
+ ]
+ },
+ "url": "https://www.yunzii.com",
+ "usb": {
+ "device_version": "1.0.2",
+ "no_startup_check": true,
+ "pid": "0x304E",
+ "vid": "0x414A",
+ "wait_for_enumeration": false
+ },
+ "ws2812": {
+ "driver": "pwm",
+ "pin": "B8"
+ },
+ "layouts": {
+ "LAYOUT": {
+ "layout": [
+ {"matrix": [0, 0], "x": 0, "y": 0},
+ {"matrix": [0, 1], "x": 1, "y": 0},
+ {"matrix": [0, 2], "x": 2, "y": 0},
+ {"matrix": [0, 3], "x": 3, "y": 0},
+ {"matrix": [0, 4], "x": 4, "y": 0},
+ {"matrix": [0, 5], "x": 5, "y": 0},
+ {"matrix": [0, 6], "x": 6, "y": 0},
+ {"matrix": [0, 7], "x": 7, "y": 0},
+ {"matrix": [0, 8], "x": 8, "y": 0},
+ {"matrix": [0, 9], "x": 9, "y": 0},
+ {"matrix": [0, 10], "x": 10, "y": 0},
+ {"matrix": [0, 11], "x": 11, "y": 0},
+ {"matrix": [0, 12], "x": 12, "y": 0},
+ {"matrix": [0, 13], "x": 14, "y": 0},
+ {"matrix": [0, 14], "x": 15, "y": 0},
+ {"matrix": [1, 0], "x": 0, "y": 1},
+ {"matrix": [1, 1], "x": 1.5, "y": 1},
+ {"matrix": [1, 2], "x": 2.5, "y": 1},
+ {"matrix": [1, 3], "x": 3.5, "y": 1},
+ {"matrix": [1, 4], "x": 4.5, "y": 1},
+ {"matrix": [1, 5], "x": 5.5, "y": 1},
+ {"matrix": [1, 6], "x": 6.5, "y": 1},
+ {"matrix": [1, 7], "x": 7.5, "y": 1},
+ {"matrix": [1, 8], "x": 8.5, "y": 1},
+ {"matrix": [1, 9], "x": 9.5, "y": 1},
+ {"matrix": [1, 10], "x": 10.5, "y": 1},
+ {"matrix": [1, 11], "x": 11.5, "y": 1},
+ {"matrix": [1, 12], "x": 12.5, "y": 1},
+ {"matrix": [1, 13], "x": 14, "y": 1},
+ {"matrix": [1, 14], "x": 15, "y": 1},
+ {"matrix": [2, 0], "x": 0, "y": 2},
+ {"matrix": [2, 1], "x": 1.75, "y": 2},
+ {"matrix": [2, 2], "x": 2.75, "y": 2},
+ {"matrix": [2, 3], "x": 3.75, "y": 2},
+ {"matrix": [2, 4], "x": 4.75, "y": 2},
+ {"matrix": [2, 5], "x": 5.75, "y": 2},
+ {"matrix": [2, 6], "x": 6.75, "y": 2},
+ {"matrix": [2, 7], "x": 7.75, "y": 2},
+ {"matrix": [2, 8], "x": 8.75, "y": 2},
+ {"matrix": [2, 9], "x": 9.75, "y": 2},
+ {"matrix": [2, 10], "x": 10.75, "y": 2},
+ {"matrix": [2, 11], "x": 11.75, "y": 2},
+ {"matrix": [2, 13], "x": 14, "y": 2},
+ {"matrix": [2, 14], "x": 15, "y": 2},
+ {"matrix": [3, 0], "x": 0, "y": 3},
+ {"matrix": [3, 2], "x": 2.5, "y": 3},
+ {"matrix": [3, 3], "x": 3.5, "y": 3},
+ {"matrix": [3, 4], "x": 4.5, "y": 3},
+ {"matrix": [3, 5], "x": 5.5, "y": 3},
+ {"matrix": [3, 6], "x": 6.5, "y": 3},
+ {"matrix": [3, 7], "x": 7.5, "y": 3},
+ {"matrix": [3, 8], "x": 8.5, "y": 3},
+ {"matrix": [3, 9], "x": 9.5, "y": 3},
+ {"matrix": [3, 10], "x": 10.5, "y": 3},
+ {"matrix": [3, 11], "x": 11.5, "y": 3},
+ {"matrix": [3, 12], "x": 13, "y": 3},
+ {"matrix": [3, 13], "x": 14, "y": 3},
+ {"matrix": [3, 14], "x": 15, "y": 3},
+ {"matrix": [4, 0], "x": 0, "y": 4},
+ {"matrix": [4, 1], "x": 1.25, "y": 4},
+ {"matrix": [4, 2], "x": 2.5, "y": 4},
+ {"matrix": [4, 5], "x": 8.75, "y": 4},
+ {"matrix": [4, 10], "x": 10, "y": 4},
+ {"matrix": [4, 11], "x": 11.25, "y": 4},
+ {"matrix": [4, 12], "x": 12.5, "y": 4},
+ {"matrix": [4, 13], "x": 13.75, "y": 4},
+ {"matrix": [4, 14], "x": 15, "y": 4}
+ ]
+ }
+ }
+}
\ No newline at end of file
diff --git a/keyboards/yunzii/al68/keymaps/default/keymap.c b/keyboards/yunzii/al68/keymaps/default/keymap.c
new file mode 100644
index 00000000000..f38f1c80dca
--- /dev/null
+++ b/keyboards/yunzii/al68/keymaps/default/keymap.c
@@ -0,0 +1,39 @@
+/*
+Copyright 2021 owlab
+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
+
+const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
+
+
+ [0] = LAYOUT(
+ KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_PSCR, KC_PSCR, KC_PAUS,
+ KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC, KC_INS, KC_HOME, KC_PGUP,
+ KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS, KC_DEL, KC_END, KC_PGDN,
+ KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT,
+ KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP,
+ KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(1), KC_APP, KC_RCTL, KC_LEFT, KC_DOWN, KC_RIGHT,
+ _______, _______
+ )
+ [1] = LAYOUT(
+ _______, KC_MYCM, KC_WHOM, KC_CALC, KC_MSEL, KC_MPRV, KC_MNXT, KC_MPLY, KC_MSTP, KC_MUTE, KC_VOLD, KC_VOLU, _______, _______, _______, _______,
+ _______, RGB_TOG, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
+ _______, _______, RGB_VAI, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, EE_CLR, QK_BOOT, _______, _______,
+ _______, _______, RGB_VAD, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
+ _______, _______, _______, RGB_HUI, _______, _______, _______, NK_TOGG, _______, _______, _______, _______, RGB_MOD,
+ _______, _______, _______, _______, _______, _______, _______, _______, RGB_SPD, RGB_RMOD, RGB_SPI,
+ _______, _______
+
+ )
+};
diff --git a/keyboards/yunzii/al68/keymaps/via/keymap.c b/keyboards/yunzii/al68/keymaps/via/keymap.c
new file mode 100644
index 00000000000..5e2cc279d85
--- /dev/null
+++ b/keyboards/yunzii/al68/keymaps/via/keymap.c
@@ -0,0 +1,28 @@
+#include QMK_KEYBOARD_H
+
+#if defined(ENCODER_MAP_ENABLE)
+const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][NUM_DIRECTIONS] = {
+ [0] = { ENCODER_CCW_CW(KC_VOLD, KC_VOLU) },
+ [1] = { ENCODER_CCW_CW(_______, _______) }
+};
+#endif
+
+
+const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
+ [0] = LAYOUT(
+ KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC, KC_MUTE,
+ KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS, KC_DELETE,
+ KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, KC_PAGE_UP,
+ KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP, KC_PAGE_DOWN,
+ KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, MO(1), KC_RCTL, KC_LEFT, KC_DOWN, KC_RIGHT
+ ),
+ [1] = LAYOUT(
+ KC_GRV, KC_BRID, KC_BRIU, _______, KC_MYCM, KC_MAIL, KC_WHOM, KC_MPRV, KC_MPLY, KC_MNXT, _______, KC_VOLD, KC_VOLU, _______, _______,
+ _______, KC_BLE1, KC_BLE2, KC_BLE3, KC_24G, _______, _______, _______, _______, _______, _______, _______, _______, RGB_MOD, _______,
+ _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, RGB_HUI, _______,
+ _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, RGB_VAI, _______,
+ _______, _______, _______, _______, _______, _______, RGB_SPD, RGB_VAD, RGB_SPI
+ )
+};
+
+
diff --git a/keyboards/yunzii/al68/keymaps/via/rules.mk b/keyboards/yunzii/al68/keymaps/via/rules.mk
new file mode 100644
index 00000000000..4253f570f0b
--- /dev/null
+++ b/keyboards/yunzii/al68/keymaps/via/rules.mk
@@ -0,0 +1,2 @@
+VIA_ENABLE = yes
+ENCODER_MAP_ENABLE = yes
\ No newline at end of file
diff --git a/keyboards/yunzii/al68/mcuconf.h b/keyboards/yunzii/al68/mcuconf.h
new file mode 100644
index 00000000000..25e5473ec67
--- /dev/null
+++ b/keyboards/yunzii/al68/mcuconf.h
@@ -0,0 +1,25 @@
+// /* Copyright 2024 Jacky
+// *
+// * 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
+
+#include_next
+
+#undef STM32_SERIAL_USE_USART1
+#define STM32_SERIAL_USE_USART1 TRUE
+
+#undef STM32_PWM_USE_TIM4
+#define STM32_PWM_USE_TIM4 TRUE
\ No newline at end of file
diff --git a/keyboards/yunzii/al68/readme.md b/keyboards/yunzii/al68/readme.md
new file mode 100644
index 00000000000..d666ffbfffa
--- /dev/null
+++ b/keyboards/yunzii/al68/readme.md
@@ -0,0 +1,22 @@
+# MK AL68
+
+* A customizable 68keys keyboard.
+
+* Keyboard Maintainer: [Jeff](https://github.com/yunziikeyboard)
+* Hardware Supported: [yunzii](https://www.yunzii.com)
+* Hardware Availability: [yunzii](https://www.yunzii.com)
+
+Make example for this keyboard (after setting up your build environment):
+
+ make mk/al68:default
+
+Flashing example for this keyboard:
+
+ make mk/al68:default:flash
+
+See the build environment setup and the make instructions for more information. Brand new to QMK? Start with our Complete Newbs Guide.
+
+## Bootloader ESC the bootloader in 3 ways:
+* **Bootmagic reset: Hold down Enter in the keyboard then replug
+* **Physical reset button: Briefly press the button on the back of the PCB
+* **Keycode in layout: Press the key mapped to QK_BOOT
\ No newline at end of file
diff --git a/keyboards/yunzii/al68/rules.mk b/keyboards/yunzii/al68/rules.mk
new file mode 100644
index 00000000000..286cb110da6
--- /dev/null
+++ b/keyboards/yunzii/al68/rules.mk
@@ -0,0 +1,3 @@
+MCU_LDSCRIPT = STM32F103xB
+UART_DRIVER_REQUIRED = yes
+SRC += ./common/smart_ble.c
diff --git a/keyboards/yunzii/common/smart_ble.c b/keyboards/yunzii/common/smart_ble.c
new file mode 100644
index 00000000000..16bf4d96206
--- /dev/null
+++ b/keyboards/yunzii/common/smart_ble.c
@@ -0,0 +1,117 @@
+// /* Copyright 2024 Jacky
+// *
+// * 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 "uart.h"
+#include "ch.h"
+#include "hal.h"
+#include "host.h"
+#include "host_driver.h"
+#include "report.h"
+#include "smart_ble.h"
+
+static uint8_t sc_ble_leds(void) {
+ return 0; // TODO: Get LED status BLE
+}
+
+static void sc_ble_mouse(report_mouse_t *report) {
+ static uint8_t last_report[sizeof(report_mouse_t)]={0};
+
+ if (!has_mouse_report_changed((report_mouse_t *)last_report, report)) return;
+ memcpy(last_report,report,sizeof(report_mouse_t));
+ uart_write(0x55);
+ uart_write(sizeof(report_mouse_t));
+ uart_transmit(last_report,sizeof(report_mouse_t));
+}
+
+
+static void sc_ble_extra(report_extra_t *report) {
+ uart_write(0x55);
+ uart_write(sizeof(report_extra_t));
+ uart_transmit((uint8_t *)report,sizeof(report_extra_t));
+}
+
+static void sc_ble_keyboard(report_keyboard_t *report) {
+ uart_write(0x55);
+ uart_write(0x09);
+ uart_write(0x01);
+ uart_transmit((uint8_t *)report,KEYBOARD_REPORT_SIZE);
+}
+
+static void sc_send_nkro(report_nkro_t *report)
+{
+ uart_write(0x55);
+ uart_write(0x12);
+ uart_transmit((uint8_t *)report,0x12);
+}
+
+static host_driver_t *last_host_driver = NULL;
+static host_driver_t sc_ble_driver = {
+ sc_ble_leds, sc_ble_keyboard,sc_send_nkro,sc_ble_mouse, sc_ble_extra
+};
+
+
+void smart_ble_startup(void) {
+ if (host_get_driver() == &sc_ble_driver) {
+ return;
+ }
+ clear_keyboard();
+ last_host_driver = host_get_driver();
+ host_set_driver(&sc_ble_driver);
+}
+
+void smart_ble_disconnect(void) {
+ if (host_get_driver() != &sc_ble_driver) {
+ return;
+ }
+ clear_keyboard();
+ host_set_driver(last_host_driver);
+}
+
+
+void sc_ble_battary(uint8_t batt_level) {
+ uart_write(0x55);
+ uart_write(0x02);
+ uart_write(0x09);
+ uart_write(batt_level);
+}
+
+void WIRELESS_START(uint32_t mode)
+{
+ uint8_t ble_command[24];
+ smart_ble_startup();
+ if(mode<1 || mode>4)
+ {
+ mode=1;
+ }
+ ble_command[0]=0x55;
+ ble_command[1]=20;
+ ble_command[2]=0;
+ ble_command[3]=mode;
+ strcpy((char * restrict)(ble_command+4),PRODUCT);
+ ble_command[strlen(PRODUCT)+4]='-';
+ ble_command[strlen(PRODUCT)+5]='0' + mode;
+ ble_command[strlen(PRODUCT)+6]= 0;
+ uart_transmit(ble_command,sizeof(ble_command));
+}
+
+void WIRELESS_STOP(void)
+{
+ smart_ble_disconnect();
+ uart_write(0x55);
+ uart_write(0x02);
+ uart_write(0x00);
+ uart_write(0x00);
+}
\ No newline at end of file
diff --git a/keyboards/yunzii/common/smart_ble.h b/keyboards/yunzii/common/smart_ble.h
new file mode 100644
index 00000000000..34859fca88b
--- /dev/null
+++ b/keyboards/yunzii/common/smart_ble.h
@@ -0,0 +1,22 @@
+// /* Copyright 2024 Jacky
+// *
+// * 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
+#include "quantum.h"
+
+void sc_ble_battary(uint8_t batt_level);
+void WIRELESS_START(uint32_t mode);
+void WIRELESS_STOP(void);
\ No newline at end of file