#BME680
1 messages · Page 1 of 1 (latest)
yup, this worked for me, now will try the Arduino library:
import adafruit_bme680
import board
import busio
import time
i2c = busio.I2C(scl=board.GP7, sda=board.GP6)
bme = adafruit_bme680.Adafruit_BME680_I2C(i2c)
while True:
print(bme.temperature)
time.sleep(1)
ok, this worked for me: