1 /*
2  * Copyright (c) 2024, Vitrolife A/S
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef ZEPHYR_INCLUDE_DRIVERS_SENSOR_VEAA_X_3_H_
8 #define ZEPHYR_INCLUDE_DRIVERS_SENSOR_VEAA_X_3_H_
9 
10 #ifdef __cplusplus
11 extern "C" {
12 #endif
13 
14 #include <zephyr/drivers/sensor.h>
15 
16 enum sensor_attribute_veaa_x_3 {
17 	/* Set pressure setpoint value in kPa. */
18 	SENSOR_ATTR_VEAA_X_3_SETPOINT = SENSOR_ATTR_PRIV_START,
19 	/* Supported pressure range in kPa. val1 is minimum and val2 is maximum */
20 	SENSOR_ATTR_VEAA_X_3_RANGE,
21 };
22 
23 #ifdef __cplusplus
24 }
25 #endif
26 
27 #endif /* ZEPHYR_INCLUDE_DRIVERS_SENSOR_VEAA_X_3_H_ */
28