You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Joel Challis c9d90db95c
[Keymap Removal] xiudi/xd75 and related keymaps. (#22698)
4 months ago
..
keymaps [Keymap Removal] xiudi/xd75 and related keymaps. (#22698) 4 months ago
config.h Move RGBLight animations to data driven (#21635) 8 months ago
info.json Move RGBLight animations to data driven (#21635) 8 months ago
readme.md Update readme files (#14172) 2 years ago
rules.mk Migrate `MCU` and `BOOTLOADER` to data-driven (#19529) 1 year ago
xd75.c Organize KPrepublic, K.T.E.C, xiudi boards into directories (#12159) 2 years ago
xd75.h Move ortho & numpad layouts to data driven (#20183) 1 year ago

readme.md

XD75

XD75

The XD75 is a 15x5 full-grid ortholinear keyboard manufactured by XIUDI. Available in two different versions: XD75Re with hot swap switch sockets and XD75Am with Alps+MX Stem support that needs soldering.

This port of the QMK firmware is my first shot at using QMK, so if you see any features done wrong (or just plain missing), feel free to fix them and put in a pull request!

Make example for this keyboard (after setting up your build environment):

make xiudi/xd75:default

Flashing example for this keyboard:

make xiudi/xd75:default:flash

See the build environment setup and the make instructions for more information. Brand new to QMK? Start with our Complete Newbs Guide.

LED Control

There are 3 individual LEDs that can be turned on and off. The functions are named according to how they're labeled on the PCB.

TODO: it would be nice to have PWM support on these LEDs for fade-in/fade-out effects.

capslock_led_on();
gp100_led_on();
gp103_led_on();

bool led_update_user(led_t led_state) {
    if (led_state.caps_lock) {
        capslock_led_on();
    } else {
        capslock_led_off();
    }

    if (some_custom_state) {
      gp100_led_on();
    } else {
      gp100_led_off();
    }

    return false;
}

For the curious:

CAPSLOCK_LED    B2
GP103_LED       F4
GP100_LED       F7