Clarify BME68X humidity and gas resistance units

This commit is contained in:
Sam Nicholls 2022-01-25 22:33:04 +00:00 committed by GitHub
parent ab602135b6
commit 7ee3d74a4a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ The `breakout_bme68x` module includes constants for the possible I2C addresses:
## Reading Data From The Sensor
The `read` method will return a tuple containing Temperature (degrees C), Pressure (Pa) humidity, and gas resistance values, plus the status code and gas/measurement indexes:
The `read` method will return a tuple containing Temperature (degrees C), Pressure (Pa), relative humidity (%rH), and gas resistance (Ω) values, plus the status code and gas/measurement indexes:
```python
temperature, pressure, humidity, gas_resistance, status, gas_index, meas_index = bme.read()