1 /*
2  * Copyright (c) 2023 Google LLC
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef ZEPHYR_SAMPLES_SENSOR_SENSOR_SHELL_INCLUDE_TRIGGER_H
8 #define ZEPHYR_SAMPLES_SENSOR_SENSOR_SHELL_INCLUDE_TRIGGER_H
9 
10 #include <zephyr/device.h>
11 #include <zephyr/drivers/sensor.h>
12 
13 void sensor_shell_data_ready_trigger_handler(const struct device *sensor,
14 					     const struct sensor_trigger *trigger);
15 
16 #endif /* ZEPHYR_SAMPLES_SENSOR_SENSOR_SHELL_INCLUDE_TRIGGER_H */
17