kmk_firmware/kmk/scanners/__init__.py

16 lines
354 B
Python
Raw Normal View History

class Scanner:
'''
Base class for scanners.
'''
2022-02-21 12:34:44 +11:00
def __init__(self):
self.coord_mapping = None
def scan_for_changes(self):
'''
Scan for key events and return a key report if an event exists.
The key report is a byte array with contents [row, col, True if pressed else False]
'''
pass