You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While poking at some new Stemma QT sensors I picked up, I was trying a command that worked for the SHT40 (product 4885), but it's failing for the SHTC3 (this product, 4636).
I'm using a QT PY, with CircuitPython version: adafruit-circuitpython-qtpy_m0_haxpress-en_US-6.2.0
I tested this also with a second QT PY, without a RAM chip added, and the normal CircuitPython, version: adafruit-circuitpython-qtpy_m0-en_US-6.2.0
To rule out that it wasn't a failure on my part, I downloaded the Project Bundle from the Learn page (build date 4/13/21), replaced my lib folder with the one contained, and replaced my code.py with the shtc3_simpletest.py file provided, named as code.py
Resetting the QT PY while monitoring serial, provides me the Temperature and Humidity readings I expect the code to provide.
However, I was still unable to use "dir(sht)" to see all available parameters. I can read the adafruit_shtc3.py source to see what they are, but I'm unable to use Python commands to see them, as it errors out.
>>> dir(sht)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "adafruit_shtc3.py", line 112, in _chip_id
File "adafruit_shtc3.py", line 112, in _chip_id
OSError: [Errno 5] Input/output error
The text was updated successfully, but these errors were encountered:
@micglin .First thanks for this issue. A new change was just merged.
Could you test again with the merged changes, to see if you still have the issue.
thanks:
While poking at some new Stemma QT sensors I picked up, I was trying a command that worked for the SHT40 (product 4885), but it's failing for the SHTC3 (this product, 4636).
I'm using a QT PY, with CircuitPython version: adafruit-circuitpython-qtpy_m0_haxpress-en_US-6.2.0
I tested this also with a second QT PY, without a RAM chip added, and the normal CircuitPython, version: adafruit-circuitpython-qtpy_m0-en_US-6.2.0
To rule out that it wasn't a failure on my part, I downloaded the Project Bundle from the Learn page (build date 4/13/21), replaced my lib folder with the one contained, and replaced my code.py with the shtc3_simpletest.py file provided, named as code.py
Resetting the QT PY while monitoring serial, provides me the Temperature and Humidity readings I expect the code to provide.
However, I was still unable to use "dir(sht)" to see all available parameters. I can read the adafruit_shtc3.py source to see what they are, but I'm unable to use Python commands to see them, as it errors out.
Output working with SHT40:
Output for SHTC3:
The text was updated successfully, but these errors were encountered: