模板:DelveBit mPython

来自Labplus盛思维基百科
Tangliufeng讨论 | 贡献2019年4月18日 (四) 09:47的版本 (创建页面,内容为“* GitHub:[https://github.com/labplus-cn/mPython_bluebit bluebit for mPython library] * bluebit for mPython library API: https://mpython-lib.readthedocs.io/zh/master/…”)
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
跳转至: 导航搜索
from mpython import *                   # 导入mpython
import bluebit                          # 导入bluebit 模块

meter=bluebit.DelveBit(0x60)            # 实例模块,根据实际I2C地址修改

while True:
    value = meter.common_measure()      # 测量
    print("measure: %f" %value)
    sleep_ms(200)