1 /*
2  * Copyright 2023 Google LLC
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef ZEPHYR_INCLUDE_DRIVERS_SENSOR_TCS3400_H_
8 #define ZEPHYR_INCLUDE_DRIVERS_SENSOR_TCS3400_H_
9 
10 #include <zephyr/drivers/sensor.h>
11 
12 enum sensor_attribute_tcs3400 {
13 	/** RGBC Integration Cycles */
14 	SENSOR_ATTR_TCS3400_INTEGRATION_CYCLES = SENSOR_ATTR_PRIV_START,
15 };
16 
17 #endif /* ZEPHYR_INCLUDE_DRIVERS_SENSOR_TCS3400_H_ */
18