File tree 1 file changed +8
-2
lines changed 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change 102
102
class Adafruit_BMP280 : # pylint: disable=invalid-name
103
103
"""Base BMP280 object. Use `Adafruit_BMP280_I2C` or `Adafruit_BMP280_SPI` instead of this. This
104
104
checks the BMP280 was found, reads the coefficients and enables the sensor for continuous
105
- reads"""
105
+ reads
106
+
107
+ .. note::
108
+ The operational range of the BMP280 is 300-1100 hPa.
109
+ Pressure measurements outside this range may not be as accurate.
110
+
111
+ """
106
112
107
113
def __init__ (self ):
108
114
# Check device ID.
@@ -155,7 +161,7 @@ def _reset(self):
155
161
def _write_ctrl_meas (self ):
156
162
"""
157
163
Write the values to the ctrl_meas register in the device
158
- ctrl_meas sets the pressure and temperature data acquistion options
164
+ ctrl_meas sets the pressure and temperature data acquisition options
159
165
"""
160
166
self ._write_register_byte (_REGISTER_CTRL_MEAS , self ._ctrl_meas )
161
167
You can’t perform that action at this time.
0 commit comments