Open trippinCode opened 2 months ago
Could you try explicitly specifying the I2C address when initializing the sensor in your code? Like this:
sensor = adafruit_sht31d.SHT31D(i2c, address=0x44)
Additionally, check your circuit connections to ensure that: The SDA and SCL lines are correctly connected to the appropriate GPIO pins on the Raspberry Pi. The sensor is properly powered and grounded. Pull-up resistors (typically 4.7k ohms) are present on the SDA and SCL lines.
Hello,
i'm currently struggling to get my sht30 sensor up and running. I bought this sensor and i'm following this guide.
I have a Raspberry Model 3b+. The sensor is connected to the GPIO Pins 9 and 7 and i'm finding it when i scan my i2c port with:
I'm also finding it via the scan method in python:
So there should be something at the hex address 0x44, but when i try to run the "hello world" of reading the sensor i get the following error error:
I don't have a lot of experience with this kind of software development, does anybody have any idea how i could debug this issue further?
Thanks a lot in advance :)