Skip to content
Snippets Groups Projects
Commit febcd1fa authored by rahix's avatar rahix
Browse files

fix(bhi160-app): Only open the currently displayed sensor


Don't open all 4 virtual sensors all time time; only open the one which
is actually displayed.  This prevents the storm of queue-full message on
the serial terminal.

Signed-off-by: default avatarRahix <rahix@rahix.de>
parent 23b4a9ed
No related branches found
No related tags found
No related merge requests found
......@@ -14,19 +14,23 @@ STATUS_COLORS = [
color.GREEN,
]
with contextlib.ExitStack() as cx:
disp = cx.enter_context(display.open())
def sensors(**args):
while True:
with bhi160.BHI160Orientation(**args) as s:
yield s, "Orientation"
with bhi160.BHI160Accelerometer(**args) as s:
yield s, "Accel"
with bhi160.BHI160Gyroscope(**args) as s:
yield s, "Gyro"
with bhi160.BHI160Magnetometer(**args) as s:
yield s, "Magnetic"
with display.open() as disp:
args = {"sample_rate": 10, "sample_buffer_len": 20}
sensor_iter = itertools.cycle(
[
(cx.enter_context(bhi160.BHI160Orientation(**args)), "Orientation"),
(cx.enter_context(bhi160.BHI160Accelerometer(**args)), "Accel"),
(cx.enter_context(bhi160.BHI160Gyroscope(**args)), "Gyro"),
(cx.enter_context(bhi160.BHI160Magnetometer(**args)), "Magnetic"),
]
)
sensor_iter = sensors(**args)
sensor, sensor_name = next(sensor_iter)
for ev in simple_menu.button_events(timeout=0.1):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment