# SPDX-FileCopyrightText: 2021 ladyada for Adafruit Industries
# SPDX-License-Identifier: MIT

import time

import board

from adafruit_dps310.basic import DPS310

i2c = board.I2C()  # uses board.SCL and board.SDA
# i2c = board.STEMMA_I2C()  # For using the built-in STEMMA QT connector on a microcontroller
dps310 = DPS310(i2c)

while True:
    print(f"Temperature = {dps310.temperature:.2f} *C")
    print(f"Pressure = {dps310.pressure:.2f} hPa")
    print("")
    time.sleep(1.0)
