Skip to content

Commit 24240ee

Browse files
committed
Correct Humidity->Relative Humidity in readme
1 parent 771b365 commit 24240ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Usage Example
6666
i2c = busio.I2C(board.SCL, board.SDA)
6767
hts = adafruit_hts221.HTS221(i2c)
6868
while True:
69-
print("Humidity: %.2f percent rH" % hts.humidity)
69+
print("Relative Humidity: %.2f percent rH" % hts.relative_humidity)
7070
print("Temperature: %.2f C" % hts.temperature)
7171
time.sleep(1)
7272

0 commit comments

Comments
 (0)