<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">from sht30 import SHT30     # Accesses the SHT30 object in the module
mySensor = SHT30()          # Create an instance of the SHT30 object

# Now retrieve two values, temperature and relative humidity, from
# the SHT30 object you created, using the specific method call
temperature, humidity = mySensor.measure()

# print the values you received
print('Temperature:', temperature, 'oC, RH:', humidity, '%')


# more information is available from the module website
</pre></body></html>