mimxrt: Add dht_readinto() to the mimxrt module, and freeze dht.py.

The change affects dht.py from the drivers directory as well to include the
logic for the mimxrt port.
This commit is contained in:
robert-hh
2021-06-19 11:00:55 +02:00
committed by Damien George
parent 99221cd118
commit e7572776c3
4 changed files with 12 additions and 2 deletions

View File

@@ -1,9 +1,13 @@
# DHT11/DHT22 driver for MicroPython on ESP8266
# MIT license; Copyright (c) 2016 Damien P. George
try:
import sys
if sys.platform.startswith("esp"):
from esp import dht_readinto
except:
elif sys.platform == "mimxrt":
from mimxrt import dht_readinto
else:
from pyb import dht_readinto