wonderbits by mfeducation.
Project description
python-sdk
主要服务于豌豆拼硬件产品
需要搭配豌豆拼硬件模块使用
Powered by MFEducation
-
包含各个模块的api
- 显示模块
- 控制模块
- 彩灯模块
- 射频通信模块
- 等等
-
sdk中包含串口通信功能
- 插上硬件模块可以直接通信
简单示例
创建一个py文件 demo.py
# 导入需要的模块 from wonderbits import Display, Control, Led import time import random # 初始化模块 d1 = Display() c1 = Control() l1 = Led() # 显示模块显示内容 d1.print(2, 1, 'value:') # 计数变量 content = 1 for i in range(10): # 获取控制模块开关sw4的值 sw4 = c1.get_sw4() # 在显示屏上显示sw4的值 d1.print(2, 7, sw4) # 设置彩灯rbg随机颜色 l1.set_rgb(random.randint(0, 255), random.randint(0, 255), random.randint(0, 255)) # 显示模块显示计数值 d1.print(1, 1, content) # 将计数变量 递增1 content += 1
运行py文件
运行环境:需要python -V 为3版本 运行: python demo.py
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Filename, size | File type | Python version | Upload date | Hashes |
---|---|---|---|---|
Filename, size wonderbits-4.3.0-py2.py3-none-any.whl (16.4 kB) | File type Wheel | Python version py2.py3 | Upload date | Hashes View |
Filename, size wonderbits-4.3.0.tar.gz (12.5 kB) | File type Source | Python version None | Upload date | Hashes View |
Close
Hashes for wonderbits-4.3.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 97141b8b26c1d181482a13d6a9118a02d3dd27cd3bd4d6a8d4b818cad21c3e07 |
|
MD5 | e3c3d8a9ad15246a21dc9073152756a6 |
|
BLAKE2-256 | fc475d6707f28aa3bd10eed41822d4a9bc9e62a7b600fad1505ca31310681d82 |