10 lines
186 B
Python
10 lines
186 B
Python
# -*- coding: utf-8 -*-
|
|
from ..lib.feasycom_ble import BTLEUart
|
|
from . import BaseInterface
|
|
|
|
|
|
class FeasycomInterface(BTLEUart, BaseInterface):
|
|
pass
|
|
|
|
|
|
# BTLEUart(mac=MAC, timeout=5)
|