diff --git a/drivers/Kconfig b/drivers/Kconfig index e0f86098c0..fe9a536146 100644 --- a/drivers/Kconfig +++ b/drivers/Kconfig @@ -117,6 +117,7 @@ rsource "sht3x/Kconfig" rsource "shtc1/Kconfig" rsource "si70xx/Kconfig" rsource "si114x/Kconfig" +rsource "si1133/Kconfig" rsource "sps30/Kconfig" rsource "tcs37727/Kconfig" rsource "tmp00x/Kconfig" diff --git a/drivers/Makefile.dep b/drivers/Makefile.dep index 4db0629a39..37b89bc6d0 100644 --- a/drivers/Makefile.dep +++ b/drivers/Makefile.dep @@ -127,10 +127,6 @@ ifneq (,$(filter sht1%,$(USEMODULE))) USEMODULE += sht1x endif -ifneq (,$(filter si1133,$(USEMODULE))) - USEMODULE += si1133 -endif - ifneq (,$(filter si114%,$(USEMODULE))) USEMODULE += si114x endif diff --git a/drivers/si1133/Kconfig b/drivers/si1133/Kconfig new file mode 100644 index 0000000000..a87efb8590 --- /dev/null +++ b/drivers/si1133/Kconfig @@ -0,0 +1,13 @@ +# Copyright (c) 2021 HAW Hamburg +# +# This file is subject to the terms and conditions of the GNU Lesser +# General Public License v2.1. See the file LICENSE in the top level +# directory for more details. +# + +config MODULE_SI1133 + bool "Si1133 UV Index/Ambient Light Sensor with I2C" + depends on HAS_PERIPH_I2C + depends on TEST_KCONFIG + select MODULE_PERIPH_I2C + select MODULE_XTIMER