Moved BLE to HID

This commit is contained in:
Kyle Brown
2020-10-21 13:44:51 -07:00
parent 3fd9a92ce4
commit 56732930c5
8 changed files with 239 additions and 283 deletions

View File

@@ -1,3 +1,5 @@
from micropython import const
try:
from kmk.release_info import KMK_RELEASE
except Exception:
@@ -5,7 +7,7 @@ except Exception:
class UnicodeMode:
NOOP = 0
LINUX = IBUS = 1
MACOS = OSX = RALT = 2
WINC = 3
NOOP = const(0)
LINUX = IBUS = const(1)
MACOS = OSX = RALT = const(2)
WINC = const(3)