Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions adafruit_bmp280.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,9 @@
STANDBY_TC_250 = const(0x03) # 250ms
STANDBY_TC_500 = const(0x04) # 500ms
STANDBY_TC_1000 = const(0x05) # 1000ms
STANDBY_TC_2000 = const(0x06) # 2000ms
STANDBY_TC_4000 = const(0x07) # 4000ms


_BMP280_STANDBY_TCS = (
STANDBY_TC_0_5,
Expand All @@ -122,6 +125,8 @@
STANDBY_TC_250,
STANDBY_TC_500,
STANDBY_TC_1000,
STANDBY_TC_2000,
STANDBY_TC_4000,
)


Expand Down
Loading