1 /* 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 enum sensor_channel_ens160 { 17 SENSOR_CHAN_ENS160_AQI = SENSOR_CHAN_PRIV_START, 18 }; 19 20 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 30