Skip to content

Commit cd1c2ef

Browse files
committed
Correct unit
The unit returned by the device is hPa not Pa -- based on my device output and information on https://learn.adafruit.com/adafruit-bmp388-bmp390-bmp3xx/python-circuitpython
1 parent dbb0502 commit cd1c2ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_bmp3xx.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ def _read(self):
193193

194194
pressure = po1 + po2 + pd4
195195

196-
# pressure in Pa, temperature in deg C
196+
# pressure in hPa, temperature in deg C
197197
return pressure, temperature
198198

199199
def _read_coefficients(self):

0 commit comments

Comments
 (0)