import adafruit_bme680
import time
import board
import busio
i2c = busio.I2C( scl = board.IO1 , sda = board.IO2)
bme680 = adafruit_bme680.Adafruit _BME680_I2C(i2c)
bme680.sea_level_pressure = 1013.25
while True:
print("\nTemperature: %0.1f C" % bme680.temperature)
print("Gas: %d ohm" % bme680.gas)
print("Pressure: %0.3f hPa" % bme680.pressure)
print