mirror of
https://github.com/cmur2/python-bme680.git
synced 2025-06-29 00:30:31 +02:00
Version 1.0.3 prep
This commit is contained in:
@ -1,9 +1,7 @@
|
||||
1.0.3
|
||||
-----
|
||||
|
||||
* Merged fixes from Bosch BME680_driver version 3.5.3
|
||||
* Replaced division with logical shift in compensation equations
|
||||
* Fixed bug in temperature compensation of pressure
|
||||
* Merged temperature compensation fix from Bosch's BME680_driver 3.5.3
|
||||
|
||||
1.0.2
|
||||
-----
|
||||
|
@ -2,7 +2,7 @@ from .constants import *
|
||||
import math
|
||||
import time
|
||||
|
||||
__version__ = '1.0.2'
|
||||
__version__ = '1.0.3'
|
||||
|
||||
class BME680(BME680Data):
|
||||
"""BOSCH BME680
|
||||
|
@ -39,7 +39,7 @@ classifiers = ['Development Status :: 5 - Production/Stable',
|
||||
|
||||
setup(
|
||||
name = 'bme680',
|
||||
version = '1.0.2',
|
||||
version = '1.0.3',
|
||||
author = 'Philip Howard',
|
||||
author_email = 'phil@pimoroni.com',
|
||||
description = """Python library for driving the Pimoroni BME680 Breakout""",
|
||||
|
Reference in New Issue
Block a user