QMK/keyboards/betalupi_ergodox/readme.md

32 lines
936 B
Markdown
Raw Normal View History

2022-02-06 12:00:50 -08:00
# Betalupi Ergodox
2022-04-16 13:50:52 -07:00
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.
2022-02-06 12:00:50 -08:00
2022-06-17 15:58:18 -07:00
# Notes
2022-12-27 13:22:07 -08:00
This keyboard adds a few extra options in `config.h`:
2022-07-21 17:49:35 -07:00
```cpp
2022-12-27 13:22:07 -08:00
#define RGBLIGHT_OFF_AT_START
#define RGBLIGHT_NO_EEPROM
#ifdef ENABLE_HID_SPELLCHECK
#ifdef ENABLE_AUTOCORRECT
2022-07-21 17:49:35 -07:00
```
2022-12-27 13:22:07 -08:00
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
```