├── .gitignore ├── .gitmodules ├── LICENSE ├── Makefile ├── README.md ├── docs └── images │ ├── favicon.ico │ ├── hcsr04.jpg │ ├── hcsr04.png │ ├── micropython.png │ ├── mpython_ico_en.png │ ├── parrot.png │ ├── 掌控-立1.png │ ├── 掌控-立2.png │ ├── 透视正面.png │ └── 透视背面.png ├── library ├── README.md ├── bigiot │ ├── .gitignore │ ├── LICENSE │ ├── MANIFEST │ ├── MANIFEST.in │ ├── README.md │ ├── bigiot.py │ ├── examples │ │ └── bigiot_example.py │ ├── optimize_upip.py │ ├── sdist_upip.py │ ├── setup.cfg │ └── setup.py ├── ir_remote │ └── ir_remote.py ├── ledstrip │ ├── LICENSE │ ├── MANIFEST │ ├── README.md │ ├── examples │ │ └── ledstrip_simple.py │ ├── ledstrip.py │ ├── optimize_upip.py │ ├── sdist_upip.py │ ├── setup.cfg │ └── setup.py ├── microbit │ ├── README.md │ └── microbit.py ├── qqai │ ├── README.md │ ├── __init__.py │ ├── aai.py │ ├── base.py │ ├── nlp.py │ └── vision │ │ ├── __init__.py │ │ ├── face.py │ │ ├── ocr.py │ │ └── picture.py ├── urllib │ ├── README.md │ └── parse.py └── yeelight │ ├── LICENSE │ ├── MANIFEST │ ├── MANIFEST.in │ ├── README.md │ ├── examples │ └── yeelight_simple.py │ ├── images │ ├── mpython.png │ └── yeelight.png │ ├── optimize_upip.py │ ├── sdist_upip.py │ ├── setup.cfg │ ├── setup.py │ └── yeelight.py ├── mkdocs.yml ├── optimize_upip.py └── sdist_upip.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | .vscode/ 3 | !.gitkeep 4 | site/ 5 | docs/index.md -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/README.md -------------------------------------------------------------------------------- /docs/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/docs/images/favicon.ico -------------------------------------------------------------------------------- /docs/images/hcsr04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/docs/images/hcsr04.jpg -------------------------------------------------------------------------------- /docs/images/hcsr04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/docs/images/hcsr04.png -------------------------------------------------------------------------------- /docs/images/micropython.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/docs/images/micropython.png -------------------------------------------------------------------------------- /docs/images/mpython_ico_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/docs/images/mpython_ico_en.png -------------------------------------------------------------------------------- /docs/images/parrot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/docs/images/parrot.png -------------------------------------------------------------------------------- /docs/images/掌控-立1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/docs/images/掌控-立1.png -------------------------------------------------------------------------------- /docs/images/掌控-立2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/docs/images/掌控-立2.png -------------------------------------------------------------------------------- /docs/images/透视正面.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/docs/images/透视正面.png -------------------------------------------------------------------------------- /docs/images/透视背面.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/docs/images/透视背面.png -------------------------------------------------------------------------------- /library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/library/README.md -------------------------------------------------------------------------------- /library/bigiot/.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | *.egg-info/ -------------------------------------------------------------------------------- /library/bigiot/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/library/bigiot/LICENSE -------------------------------------------------------------------------------- /library/bigiot/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/library/bigiot/MANIFEST -------------------------------------------------------------------------------- /library/bigiot/MANIFEST.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /library/bigiot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/library/bigiot/README.md -------------------------------------------------------------------------------- /library/bigiot/bigiot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/library/bigiot/bigiot.py -------------------------------------------------------------------------------- /library/bigiot/examples/bigiot_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/library/bigiot/examples/bigiot_example.py -------------------------------------------------------------------------------- /library/bigiot/optimize_upip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/library/bigiot/optimize_upip.py -------------------------------------------------------------------------------- /library/bigiot/sdist_upip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/library/bigiot/sdist_upip.py -------------------------------------------------------------------------------- /library/bigiot/setup.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /library/bigiot/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/library/bigiot/setup.py -------------------------------------------------------------------------------- /library/ir_remote/ir_remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/library/ir_remote/ir_remote.py -------------------------------------------------------------------------------- /library/ledstrip/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/library/ledstrip/LICENSE -------------------------------------------------------------------------------- /library/ledstrip/MANIFEST: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /library/ledstrip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/library/ledstrip/README.md -------------------------------------------------------------------------------- /library/ledstrip/examples/ledstrip_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/library/ledstrip/examples/ledstrip_simple.py -------------------------------------------------------------------------------- /library/ledstrip/ledstrip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/library/ledstrip/ledstrip.py -------------------------------------------------------------------------------- /library/ledstrip/optimize_upip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/library/ledstrip/optimize_upip.py -------------------------------------------------------------------------------- /library/ledstrip/sdist_upip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/library/ledstrip/sdist_upip.py -------------------------------------------------------------------------------- /library/ledstrip/setup.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /library/ledstrip/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/library/ledstrip/setup.py -------------------------------------------------------------------------------- /library/microbit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/library/microbit/README.md -------------------------------------------------------------------------------- /library/microbit/microbit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/library/microbit/microbit.py -------------------------------------------------------------------------------- /library/qqai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/library/qqai/README.md -------------------------------------------------------------------------------- /library/qqai/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/library/qqai/__init__.py -------------------------------------------------------------------------------- /library/qqai/aai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/library/qqai/aai.py -------------------------------------------------------------------------------- /library/qqai/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/library/qqai/base.py -------------------------------------------------------------------------------- /library/qqai/nlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/library/qqai/nlp.py -------------------------------------------------------------------------------- /library/qqai/vision/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/library/qqai/vision/__init__.py -------------------------------------------------------------------------------- /library/qqai/vision/face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/library/qqai/vision/face.py -------------------------------------------------------------------------------- /library/qqai/vision/ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/library/qqai/vision/ocr.py -------------------------------------------------------------------------------- /library/qqai/vision/picture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/library/qqai/vision/picture.py -------------------------------------------------------------------------------- /library/urllib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/library/urllib/README.md -------------------------------------------------------------------------------- /library/urllib/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/library/urllib/parse.py -------------------------------------------------------------------------------- /library/yeelight/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/library/yeelight/LICENSE -------------------------------------------------------------------------------- /library/yeelight/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/library/yeelight/MANIFEST -------------------------------------------------------------------------------- /library/yeelight/MANIFEST.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /library/yeelight/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/library/yeelight/README.md -------------------------------------------------------------------------------- /library/yeelight/examples/yeelight_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/library/yeelight/examples/yeelight_simple.py -------------------------------------------------------------------------------- /library/yeelight/images/mpython.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/library/yeelight/images/mpython.png -------------------------------------------------------------------------------- /library/yeelight/images/yeelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/library/yeelight/images/yeelight.png -------------------------------------------------------------------------------- /library/yeelight/optimize_upip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/library/yeelight/optimize_upip.py -------------------------------------------------------------------------------- /library/yeelight/sdist_upip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/library/yeelight/sdist_upip.py -------------------------------------------------------------------------------- /library/yeelight/setup.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /library/yeelight/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/library/yeelight/setup.py -------------------------------------------------------------------------------- /library/yeelight/yeelight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/library/yeelight/yeelight.py -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /optimize_upip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/optimize_upip.py -------------------------------------------------------------------------------- /sdist_upip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labplus-cn/awesome-mpython/HEAD/sdist_upip.py --------------------------------------------------------------------------------