1
0
Fork 0

Add layer switcher keycodes: OUT_AUTO, OUT_USB, OUT_BT, OUT_BLE

This commit is contained in:
Priyadi Iman Nurcahyo 2017-02-01 15:35:21 +07:00
parent d8a9c63c26
commit c17070eca5
2 changed files with 39 additions and 0 deletions

View file

@ -141,6 +141,16 @@ enum quantum_keycodes {
PRINT_ON,
PRINT_OFF,
// output selection
OUT_AUTO,
OUT_USB,
#ifdef BLUETOOTH_ENABLE
OUT_BT,
#endif
#ifdef ADAFRUIT_BLE_ENABLE
OUT_BLE,
#endif
// always leave at the end
SAFE_RANGE
};