zephyr/samples/modules/lvgl/accelerometer_chart/Kconfig
Benjamin Cabé 17fad703c5 samples: lvgl: sensor: Add LVGL sample for real-time sensor data chart
This adds a new sample for LVGL that displays a real-time chart for
accelerometer data acquired from &accel0 sensor.

This also adds the appropriate overlays so that the sample can also run
on native POSIX and native sim using emulated BMI160.

Signed-off-by: Benjamin Cabé <benjamin@zephyrproject.org>
2023-10-20 15:00:02 +02:00

18 lines
472 B
Plaintext

# Copyright (c) 2023 Benjamin Cabé <benjamin@zephyrproject.org>
# SPDX-License-Identifier: Apache-2.0
config SAMPLE_CHART_POINTS_PER_SERIES
int "Number of points per series"
default 50
range 10 200
help
Maximum number of points per series in the accelerometer chart.
Warning: More points means more memory usage, and slower rendering!
config SAMPLE_ACCEL_SAMPLING_RATE
int "Accelerometer sampling rate (Hz)"
default 50
range 1 100
source "Kconfig.zephyr"