Teensy 3.1 support

This commit is contained in:
Kyle Brown
2018-09-03 16:22:04 -07:00
parent 5c55ffd790
commit b69fed1199
3 changed files with 47 additions and 0 deletions

10
entrypoints/teensy31.py Normal file
View File

@@ -0,0 +1,10 @@
import sys
from kmk_keyboard_user import main
if __name__ == '__main__':
try:
main()
except Exception as e:
sys.print_exception(e)
sys.exit(1)