mirror of
https://github.com/cmur2/python-bme680.git
synced 2024-12-22 12:54:29 +01:00
Fixed bug in set_temp_offset
This commit is contained in:
parent
7e08c2d749
commit
4ae50e2f2c
@ -64,7 +64,7 @@ class BME680(BME680Data):
|
|||||||
"""
|
"""
|
||||||
if value == 0:
|
if value == 0:
|
||||||
self.offset_temp_in_t_fine = 0
|
self.offset_temp_in_t_fine = 0
|
||||||
elif value < 0:
|
else:
|
||||||
self.offset_temp_in_t_fine = int(math.copysign((((int(abs(value) * 100)) << 8) - 128) / 5, value))
|
self.offset_temp_in_t_fine = int(math.copysign((((int(abs(value) * 100)) << 8) - 128) / 5, value))
|
||||||
|
|
||||||
def set_humidity_oversample(self, value):
|
def set_humidity_oversample(self, value):
|
||||||
|
Loading…
Reference in New Issue
Block a user