1
0
Fork 0

[Keyboard] Added via support for orthocode (#15777)

This commit is contained in:
Jordan Blackbourn 2022-01-11 13:44:18 +13:00 committed by GitHub
parent 372c9102e2
commit cd12b54650
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 140 additions and 6 deletions

View file

@ -17,6 +17,7 @@
#pragma once
#define _x_ KC_NO
#define KC_SHSP SHIFTSPACE
#include "quantum.h"
@ -34,3 +35,16 @@
{ K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, _x_, K3D, _x_ }, \
{ _x_, K41, K42, K43, K44, K45, K46, K47, K48, K49, K4A, K4B, K4C, K4D, K4E} \
}
enum custom_keycodes {
#ifdef VIA_ENABLE
SHIFTSPACE = USER00,
#else
SHIFTSPACE = SAFE_RANGE,
#endif
#ifdef VIA_ENABLE
QWERTY = SAFE_RANGE
#else
QWERTY
#endif
};