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)