From e29657dfd208f378da4200cfbe978f204a5f7959 Mon Sep 17 00:00:00 2001 From: Leandro Lanzieri Date: Fri, 13 Nov 2020 12:31:22 +0100 Subject: [PATCH] drivers/bh1750fvi: add module to Kconfig --- drivers/Kconfig | 1 + drivers/bh1750fvi/Kconfig | 13 +++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 drivers/bh1750fvi/Kconfig diff --git a/drivers/Kconfig b/drivers/Kconfig index d64f037305..cfe1404e51 100644 --- a/drivers/Kconfig +++ b/drivers/Kconfig @@ -31,6 +31,7 @@ rsource "adt7310/Kconfig" rsource "adxl345/Kconfig" rsource "apds99xx/Kconfig" rsource "at30tse75x/Kconfig" +rsource "bh1750fvi/Kconfig" rsource "bmx055/Kconfig" rsource "fxos8700/Kconfig" rsource "gp2y10xx/Kconfig" diff --git a/drivers/bh1750fvi/Kconfig b/drivers/bh1750fvi/Kconfig new file mode 100644 index 0000000000..7b07db8e52 --- /dev/null +++ b/drivers/bh1750fvi/Kconfig @@ -0,0 +1,13 @@ +# Copyright (c) 2020 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_BH1750FVI + bool "BH1750FVI ambient light sensor" + depends on HAS_PERIPH_I2C + depends on TEST_KCONFIG + select MODULE_PERIPH_I2C + select MODULE_XTIMER