1
0
mirror of https://github.com/cmur2/python-bme680.git synced 2024-06-02 00:34:40 +02:00

Merge pull request #8 from lowflyerUK/master

Updated mask operation in constants.py to correct gas resistance
This commit is contained in:
Philip Howard 2017-12-04 10:28:14 +00:00 committed by GitHub
commit 097287e842
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -325,7 +325,7 @@ class CalibrationData:
def set_other(self, heat_range, heat_value, sw_error):
self.res_heat_range = (heat_range & RHRANGE_MSK) // 16
self.res_heat_val = heat_value
self.range_sw_err = (sw_error * RSERROR_MSK) // 16
self.range_sw_err = (sw_error & RSERROR_MSK) // 16
# BME680 sensor settings structure which comprises of ODR,
# over-sampling and filter settings.