32 lines
936 B
Markdown
32 lines
936 B
Markdown
# Betalupi Ergodox
|
|
|
|
This is a modified version of the [ZSA ErgoDox firmware](https://git.betalupi.com/mirrors-QMK/zsa_firmware), based on the `ergodox_ex/glow` keyboard.
|
|
|
|
|
|
# Notes
|
|
|
|
This keyboard adds a few extra options in `config.h`:
|
|
|
|
```cpp
|
|
#define RGBLIGHT_OFF_AT_START
|
|
#define RGBLIGHT_NO_EEPROM
|
|
#ifdef ENABLE_HID_SPELLCHECK
|
|
#ifdef ENABLE_AUTOCORRECT
|
|
```
|
|
|
|
Also, there are a few custom kecodes defined in `betalupi_keyboard.c`. This allows us to control the rgb matrix and rgb lighting seperately---my keyboard has both.
|
|
|
|
```
|
|
// Custom RGBLIGHT macros
|
|
LIGHT_TOG, // Toggle backlight
|
|
LIGHT_HUI, // Increase backlight hue
|
|
LIGHT_HUD, // Decrease backlight hue
|
|
LIGHT_SAI, // Increase backlight sat
|
|
LIGHT_SAD, // Decrease backlight sat
|
|
LIGHT_VAI, // Increase backlight val
|
|
LIGHT_VAD, // Decrease backlight val
|
|
LIGHT_SPI, // Increase backlight speed
|
|
LIGHT_SPD, // Decrease backlight speed
|
|
LIGHT_MOD, // Change backlight animation mode
|
|
```
|