We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 87e54ce + 1a70659 commit 394cb7aCopy full SHA for 394cb7a
README.rst
@@ -68,6 +68,8 @@ Usage Example
68
# Create library object using our Bus I2C port
69
i2c = busio.I2C(board.SCL, board.SDA)
70
bme280 = adafruit_bme280.Adafruit_BME280_I2C(i2c)
71
+ #or with other sensor address
72
+ #bme280 = adafruit_bme280.Adafruit_BME280_I2C(i2c, address=0x76)
73
74
# OR create library object using our Bus SPI port
75
#spi = busio.SPI(board.SCK, board.MOSI, board.MISO)
0 commit comments