相关文章
micrpython编译javascript版
1、首先安装emsdkgit clone https://github.com/emscripten-core/emsdk.git cd <path-to-emsdk> git pull ./emsdk install latest ./emsdk activate latest source ./emsdk_env.sh2、获取micropython源码git clone&...
LVGL_micropython 模拟器
在使用micropython编写lvgl界面时有时间非常的麻烦。要在设备上才看得到效果。比较麻烦。npx的GUI-Guider软件中的模拟器给抠出来了单独使用,非常不错。下面是运行实例:import SDL import utime as time import usys as sys import lvgl as lv import lodepng as p...
micropython 实现tar 文件解包
import upip_utarfile as tar import os def run(src,dest_dir): t = tar.TarFile(src) if not dest_dir in os.listdir(): os.mkdir(dest_dir)  ...