From 789a197cee1e4e68baed993be795374ec24915c3 Mon Sep 17 00:00:00 2001 From: Leandro Lanzieri Date: Wed, 18 Nov 2020 18:46:45 +0100 Subject: [PATCH] drivers/dht: add module to Kconfig --- drivers/Kconfig | 1 + drivers/dht/Kconfig | 13 +++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 drivers/dht/Kconfig diff --git a/drivers/Kconfig b/drivers/Kconfig index de6a5872e5..4630effd6c 100644 --- a/drivers/Kconfig +++ b/drivers/Kconfig @@ -48,6 +48,7 @@ rsource "bmx055/Kconfig" rsource "bmx280/Kconfig" rsource "ccs811/Kconfig" rsource "dcf77/Kconfig" +rsource "dht/Kconfig" rsource "fxos8700/Kconfig" rsource "gp2y10xx/Kconfig" rsource "hdc1000/Kconfig" diff --git a/drivers/dht/Kconfig b/drivers/dht/Kconfig new file mode 100644 index 0000000000..e46efbf8bb --- /dev/null +++ b/drivers/dht/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_DHT + bool "DHT Humidity and Temperature Sensors" + depends on HAS_PERIPH_GPIO + depends on TEST_KCONFIG + select MODULE_PERIPH_GPIO + select MODULE_XTIMER