26ce2d1734
Performance improvements to the lighting system. Renamed app_router to macropad_os.
6 lines
161 B
Python
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 |