1# Drivers configuration options for SeeedStudio Grove Devices
2
3# Copyright (c) 2015 Intel Corporation
4# SPDX-License-Identifier: Apache-2.0
5
6config GROVE_SENSORS
7	bool "Seeed Grove sensors support"
8	default y
9	depends on DT_HAS_SEEED_GROVE_LIGHT_ENABLED || DT_HAS_SEEED_GROVE_TEMPERATURE_ENABLED
10	help
11	  Enable Seeed Grove sensors support.
12
13if GROVE_SENSORS
14
15config GROVE_LIGHT_SENSOR
16	bool "The Seeed Grove Light Sensor"
17	default y
18	depends on DT_HAS_SEEED_GROVE_LIGHT_ENABLED
19	depends on ADC && !MINIMAL_LIBC
20	help
21	  Setting this value will enable driver support for the Grove Light
22	  Sensor.
23
24config GROVE_TEMPERATURE_SENSOR
25	bool "The Seeed Grove Temperature Sensor"
26	default y
27	depends on DT_HAS_SEEED_GROVE_TEMPERATURE_ENABLED
28	depends on ADC && !MINIMAL_LIBC
29	help
30	  Setting this value will enable driver support for the Grove
31	  Temperature Sensor.
32
33endif # GROVE_SENSORS
34