Files
MacroPadOS/macropad_os/app_utils/key.py
T
Lucas Oskorep 26ce2d1734 feat: Added automatic loading of Apps from the macropad_apps/python directory at load time.
Performance improvements to the lighting system.
Renamed app_router to macropad_os.
2022-09-20 00:44:42 -04:00

6 lines
161 B
Python

from adafruit_hid.keycode import Keycode
class Key(object):
def __init__(self, name, keycode:Keycodes):
self.name = name
self.code = keycode