diff --git a/test.py b/test.py index 2f07999..447f4e6 100644 --- a/test.py +++ b/test.py @@ -4,7 +4,9 @@ import adafruit_bmp280 import time def get_temperature(): - + i2c = busio.I2C(board.SCL, board.SDA) + bmp280 = adafruit_bmp280.Adafruit_BMP280_I2C(i2c, address=0x76) + return bmp280.temperature while True: print(get_temperature())