New driver for I2C illuminance sensor LiteOn LTR-F216A. Datasheet: https://optoelectronics.liteon.com/upload/download/DS86-2019-0016/LTR-F216A_Final_DS_V1.4.PDF * Applied suggestions from code review * Removed retry mechanism Signed-off-by: Markus Becker <markus.becker@tridonic.com> Co-authored-by: Andy Sinclair <andy@aasinclair.co.uk>
13 lines
291 B
Plaintext
13 lines
291 B
Plaintext
# LTR-F216A light sensor configuration options
|
|
|
|
# Copyright (c) 2023 Tridonic
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config LTR_F216A
|
|
bool "LiteOn LTR-F216A Light Sensor"
|
|
default y
|
|
depends on DT_HAS_LTR_F216A_ENABLED
|
|
select I2C
|
|
help
|
|
Enable driver for LiteOn LTR-F216A light sensors.
|