Serial interface implemented

This commit is contained in:
Mark Qvist 2016-06-03 19:02:02 +02:00
parent 9a9630cfd2
commit be8fa4f7bb
15 changed files with 2789 additions and 30 deletions

View file

@ -0,0 +1,5 @@
import os
import glob
modules = glob.glob(os.path.dirname(__file__)+"/*.py")
__all__ = [ os.path.basename(f)[:-3] for f in modules if not f.endswith('__init__.py')]