本文整理匯總了Python中bme280.BME280屬性的典型用法代碼示例。如果您正苦於以下問題:Python bme280.BME280屬性的具體用法?Python bme280.BME280怎麽用?Python bme280.BME280使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在類bme280
的用法示例。
在下文中一共展示了bme280.BME280屬性的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: __init__
# 需要導入模塊: import bme280 [as 別名]
# 或者: from bme280 import BME280 [as 別名]
def __init__(self):
try:
self.bme280 = BME280()
except ImportError:
print('Failed to load Enviro Plus BME280 module')
try:
from enviroplus import gas
self.gas = gas
except ImportError as e:
print(e)
try:
# Transitional fix for breaking change in LTR559
from ltr559 import LTR559
self.ltr559 = LTR559()
except ImportError:
import self.ltr559
self.sensor = 'enviroplus'
示例2: _get_device
# 需要導入模塊: import bme280 [as 別名]
# 或者: from bme280 import BME280 [as 別名]
def _get_device(self):
if self._device:
return self._device
from smbus import SMBus
from bme280 import BME280
self._bus = SMBus(self.port)
self._device = BME280(i2c_dev=self._bus)
return self._device
示例3: on_publish
# 需要導入模塊: import bme280 [as 別名]
# 或者: from bme280 import BME280 [as 別名]
def on_publish(client, userdata, mid):
print("mid: " + str(mid))
# Read values from BME280 and PMS5003 and return as dict