1# DS18B20 temperature and humidity sensor configuration options
2
3# Copyright (c) 2022 Thomas Stranger
4# SPDX-License-Identifier: Apache-2.0
5
6config DS18B20
7	bool "DS18B20 Temperature Sensor"
8	default y
9	depends on DT_HAS_MAXIM_DS18B20_ENABLED || DT_HAS_MAXIM_DS18S20_ENABLED
10	depends on W1_NET
11	help
12	  Enable driver for DS18B20 1-Wire temperature sensors.
13