1# LM35 temperature sensor config
2
3# Copyright (c) 2024 Renato Soma <renatoys08@gmail.com>
4# SPDX-License-Identifier: Apache-2.0
5
6config LM35
7	bool "LM35 Temperature Sensor"
8	default y
9	depends on DT_HAS_LM35_ENABLED
10	select ADC
11	help
12	  Enable the driver for the LM35 digital temperature Sensor
13