Line data Source code
1 0 : /*
2 : * Copyright (c) 2024 Gustavo Silva
3 : * SPDX-License-Identifier: Apache-2.0
4 : */
5 :
6 : #ifndef ZEPHYR_INCLUDE_DRIVERS_SENSOR_ENS160_H_
7 : #define ZEPHYR_INCLUDE_DRIVERS_SENSOR_ENS160_H_
8 :
9 : #ifdef __cplusplus
10 : extern "C" {
11 : #endif
12 :
13 : #include <zephyr/drivers/sensor.h>
14 :
15 : /* Channel for Air Quality Index */
16 0 : enum sensor_channel_ens160 {
17 : SENSOR_CHAN_ENS160_AQI = SENSOR_CHAN_PRIV_START,
18 : };
19 :
20 0 : enum sensor_attribute_ens160 {
21 : SENSOR_ATTR_ENS160_TEMP = SENSOR_ATTR_PRIV_START,
22 : SENSOR_ATTR_ENS160_RH,
23 : };
24 :
25 : #ifdef __cplusplus
26 : }
27 : #endif
28 :
29 : #endif
|