|
楼主 |
发表于 2020-3-28 08:21
|
显示全部楼层
本帖最后由 eagler8 于 2020-3-28 08:32 编辑
#尝试搭建K210的Micropython开发环境(Win10)
#实验程序之一:串口打印‘hello maixpy’,固件版本号
[mw_shl_code=python,true]#尝试搭建K210的Micropython开发环境(Win10)
#实验程序之一:串口打印‘hello maixpy’,固件版本号
import sys
for i in range(0, 2):
print("hello maixpy")
print("hello ", end="maixpy\n")
print("implementation:", sys.implementation)
print("platform:", sys.platform)
print("path:", sys.path)
print("Python version:", sys.version)
print("please input string, end with Enter")
r = sys.stdin.readline()
w_len = sys.stdout.write(r)[/mw_shl_code]
|
|