Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/labplus-cn/mpython_conn
A transfer protocol between mPython board and Python 3.X
https://github.com/labplus-cn/mpython_conn
Last synced: 6 days ago
JSON representation
A transfer protocol between mPython board and Python 3.X
- Host: GitHub
- URL: https://github.com/labplus-cn/mpython_conn
- Owner: labplus-cn
- License: mit
- Created: 2020-06-07T01:18:03.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-06-10T12:37:35.000Z (over 4 years ago)
- Last Synced: 2024-09-15T03:18:45.677Z (2 months ago)
- Language: Python
- Size: 15.6 KB
- Stars: 1
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# mpython_conn
A transfer protocol between mPython board and Python 3.X掌控板上可以运行 micropython 程序,尽管 micropython 有着和 Python 3.x 一样的语法,但在 micropython 中无法使用原生 Python 强大的第三方资源支持。mpython_conn 是一个用于在 Python 3.x 中控制掌控板的连接库,上位机运行 Python 程序,而掌控板作为下位机完成输入输出任务。
### Attention
This program depends on the micropython firmware on the mPython board.本程序依赖于掌控板板载的micropython固件。
### Pypi
https://pypi.org/project/mpython-conn/### Wiki
http://wiki.labplus.cn/index.php?title=Mpython_conn### Installation
##### Linux & Mac OS
```shell
sudo pip3 install mpython_conn
```
###### Upgrade
```shell
sudo pip3 install mpython_conn --upgrade
```##### Windows
Open command prompt window as administrator mode
```shell
pip3 install mpython_conn
```
###### Upgrade
```shell
pip3 install mpython_conn --upgrade
```## License
[MIT License](http://en.wikipedia.org/wiki/MIT_License)