Line data Source code
1 1 : /*
2 : * Copyright (c) 2025 Würth Elektronik eiSos GmbH & Co. KG
3 : *
4 : * SPDX-License-Identifier: Apache-2.0
5 : */
6 :
7 : /**
8 : * @file
9 : * @brief Extended public API for WSEN-PADS-2511020213301 Sensor
10 : *
11 : */
12 :
13 : #ifndef ZEPHYR_INCLUDE_DRIVERS_SENSOR_WSEN_PADS_2511020213301_H_
14 : #define ZEPHYR_INCLUDE_DRIVERS_SENSOR_WSEN_PADS_2511020213301_H_
15 :
16 : #ifdef __cplusplus
17 : extern "C" {
18 : #endif
19 :
20 : #include <zephyr/drivers/sensor.h>
21 :
22 0 : enum sensor_attribute_wsen_pads_2511020213301 {
23 : SENSOR_ATTR_WSEN_PADS_2511020213301_REFERENCE_POINT = SENSOR_ATTR_PRIV_START,
24 : };
25 :
26 : #ifdef CONFIG_WSEN_PADS_2511020213301_PRESSURE_THRESHOLD
27 : enum sensor_trigger_wsen_pads_2511020213301 {
28 : SENSOR_TRIG_WSEN_PADS_2511020213301_THRESHOLD_UPPER = SENSOR_TRIG_PRIV_START,
29 : SENSOR_TRIG_WSEN_PADS_2511020213301_THRESHOLD_LOWER,
30 : };
31 : #endif /* CONFIG_WSEN_PADS_2511020213301_PRESSURE_THRESHOLD */
32 :
33 : #ifdef __cplusplus
34 : }
35 : #endif
36 :
37 : #endif /* ZEPHYR_INCLUDE_DRIVERS_SENSOR_WSEN_PADS_2511020213301_H_ */
|