$ mpremote connect /dev/ttyUSB0 mip install --index https://USERNAME.github.io/micropython-lib/mip/BRANCH_NAME PACKAGE_NAME Or from a networked device: import mip mip.install(PACKAGE_NAME, index="https://USERNAME.github.io/micropython-lib/mip/BRANCH_NAME") (Where USERNAME, BRANCH_NAME ...
optimize_upip.py: Rework inclusion/exclusion logic. 8年前 sdist_upip.py sdist_upip: Don't treat files at the toplevel dir as resources. 7年前 README 简介 micropython-lib 镜像 暂无标签 保存更改 发行版 暂无发行版 贡献者(39) 全部 近期动态 5年前创建了仓库...
micropython-lib MicroPython是一个为微控制器设计的Python解释器。它允许开发者使用Python编写代码,而无需担心底层硬件的细节。MicroPython将许多核心Python库转换为了适合微控制器的格式。 例如,Python的os和sys模块被移植到MicroPython中,以支持在微控制器上进行文件操作和系统调用。此外,MicroPython还包括了对标准库的修改...
To facilitate such usage, micropython-lib also provides reimplementations ("backports") of MicroPython modules which run on CPython. This first of all applies to the builtin MicroPython "u" modules, but as time goes on, backports of micropython-lib's own modules can be provided. Backport modu...
All kinds of micropython drives, examples, libraries. LCD LED Sensor Neopixel keyboard radio bluetooth misc From microbit/micropython Chinese community. www.micropython.org.cn
MicroPython New FontLib 项目介绍 使用MicroPython 开发板读取自定义字库并显示 获取完整项目 因为项目中使用了子模块FontMaker Client的binary分支 和OLED Research,所以要获取完整项目代码需要如下操作 克隆方式 $ git clone --recursive https://gitee.com/walkline/micropython-new-fontlib.git ...
@m5stack said in micropython flowlib missing sources: @tialm we has plan to open source all Unit code. but maybe it need wait the UIFlow2.0 version finish 10 months later... So has there been any updates on this? If i knew this would end up in proprietary BS again i would have bou...
MAX31865-开发LIB STM32F103芯片驱动MAX31865程序 TPYBoard v10x资料Arduino-TPLoRa-v1.0 库
cryptolib– 加密密码学算法¶ 类¶ class cryptolib.aes¶ classmethod __init__(key, mode[, IV])¶ 初始化密码对象,适用于加密/解密。注意:初始化后,密码对象只能用于加密或解密之一。在执行 encrypt() 操作后再执行 decrypt(),或者反之,是不支持的。 参数为: key 是加密/解密密钥(类似于字节)。
1(或cryptolib.MODE_ECBif it exists) 如果存在)用于电子密码簿 (ECB)。 2(或cryptolib.MODE_CBCif it exists) 如果存在)用于密码块链接 (CBC)。 6(或cryptolib.MODE_CTR如果存在)用于计数器模式 (CTR)。 IV是 CBC 模式的初始化向量。 对于计数器模式,IV是计数器的初始值。