qmk-dactyl-manuform-a/keyboards/xiudi/xd75
Eric Gebhart e865cab48e
[Keymap] ericgebhart keymap and userspace updates (#15727)
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Dasky <32983009+daskygit@users.noreply.github.com>
Co-authored-by: Drashna Jael're <drashna@live.com>
2022-01-13 20:40:41 -08:00
..
keymaps [Keymap] ericgebhart keymap and userspace updates (#15727) 2022-01-13 20:40:41 -08:00
config.h
info.json Remove width, height and key_count from info.json (#14274) 2021-09-12 14:04:56 +10:00
readme.md Update readme files (#14172) 2021-08-26 16:53:24 +01:00
rules.mk Tidy up NKRO_ENABLE rules (#15382) 2021-12-09 16:05:44 +11:00
xd75.c
xd75.h

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