Files
MicroPythonOS/internal_filesystem/lib/drivers/indev/__init__.py
T
2026-03-01 22:45:30 +01:00

11 lines
250 B
Python

"""Input device drivers package helpers."""
try:
import sys
from . import focaltech_touch as _focaltech_touch
if "focaltech_touch" not in sys.modules:
sys.modules["focaltech_touch"] = _focaltech_touch
except Exception:
pass