Support KEYBOARD and CONSUMER modes of HID on Feather M4 Express

This commit is contained in:
Josh Klar
2018-10-06 05:59:03 -07:00
parent 0b11f42cc2
commit 472b08d77b
7 changed files with 240 additions and 151 deletions

View File

@@ -1,6 +1,7 @@
import sys
from logging import DEBUG
from kmk.circuitpython.hid import HIDHelper
from kmk.circuitpython.matrix import MatrixScanner
from kmk.common.consts import UnicodeModes
from kmk.firmware import Firmware
@@ -23,6 +24,7 @@ def main():
unicode_mode=unicode_mode,
log_level=DEBUG,
matrix_scanner=MatrixScanner,
hid=HIDHelper,
)
firmware.go()