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-TIDS-2521020222501 Sensor 10 * 11 */ 12 13 #ifndef ZEPHYR_INCLUDE_DRIVERS_SENSOR_WSEN_TIDS_2521020222501_H_ 14 #define ZEPHYR_INCLUDE_DRIVERS_SENSOR_WSEN_TIDS_2521020222501_H_ 15 16 #ifdef __cplusplus 17 extern "C" { 18 #endif 19 20 #include <zephyr/drivers/sensor.h> 21 22 enum sensor_trigger_wsen_tids_2521020222501 { 23 SENSOR_TRIG_WSEN_TIDS_2521020222501_THRESHOLD_UPPER = SENSOR_TRIG_PRIV_START, 24 SENSOR_TRIG_WSEN_TIDS_2521020222501_THRESHOLD_LOWER, 25 }; 26 27 #ifdef __cplusplus 28 } 29 #endif 30 31 #endif /* ZEPHYR_INCLUDE_DRIVERS_SENSOR_WSEN_TIDS_2521020222501_H_ */ 32