We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi.
Try to add sht.reset(). On my Jetson following code works without power reset.
import time import board import adafruit_shtc3 i2c = board.I2C() # uses board.SCL and board.SDA sht = adafruit_shtc3.SHTC3(i2c) run = True while run: try: temperature, relative_humidity = sht.measurements print("Temperature: %0.1f C" % temperature) print("Humidity: %0.1f %%" % relative_humidity) print("") time.sleep(1) except KeyboardInterrupt: run = False sht.reset() print('Service stopped')
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi.
Try to add sht.reset().
On my Jetson following code works without power reset.
The text was updated successfully, but these errors were encountered: