hts221.py
# هذا العمل مرخص بموجب ترخيص MIT.
# حقوق النشر (c) 2013-2023 OpenMV LLC. جميع الحقوق محفوظة.
# https://github.com/openmv/openmv/blob/master/LICENSE
#
# مثال حساس الرطوبة النسبية ودرجة الحرارة.
# ملاحظة: يستخدم Arduino Nano BLE 33 Sense Rev2 حساس HS3003.
import time
from hts221 import HTS221
from machine import Pin, I2C
bus = I2C(1, scl=Pin(15), sda=Pin(14))
try:
hts = HTS221(bus)
except OSError:
from hs3003 import HS3003
hts = HS3003(bus)
while True:
rH = hts.humidity()
temp = hts.temperature()
print("rH: %.2f%% T: %.2fC" % (rH, temp))
time.sleep_ms(100)