[原创] 16 位 I2C 地址模式的 micropython SHT3x 驱动

dcexpert   2021-12-23 09:53 楼主

mpy-lib库中新增SHT3x温湿度传感器驱动。SHT3x包含了两种模式,除了常规I2C模式的驱动外,还增加了16位I2C地址模式驱动。驱动的底层虽然有差异,但是使用方式都是一样的:

 

from machine import I2C, Pin
from time import sleep_ms
from sht3x_16bit import SHT3x

i2c = I2C(0, sda=Pin(21), scl = Pin(22))

sht30 = SHT3x(i2c)

while True:
    sht30.measure()
    print(sht30.ht())
    sleep_ms(1000)

 

  • https://github.com/micropython-Chinese-Community/mpy-lib
  • https://gitee.com/microbit/mpy-lib

 

回复评论

暂无评论,赶紧抢沙发吧
电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 京公网安备 11010802033920号
    写回复