You've already forked MicroPythonOS
mirror of
https://github.com/m5stack/MicroPythonOS.git
synced 2026-05-20 11:51:27 -07:00
11 lines
250 B
Python
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
|