mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-27 21:35:22 +00:00
Add a sample to demonstrate and test the Renesas/Intersil ISL29035 light sensor driver. Signed-off-by: Peter Bigot <peter.bigot@nordicsemi.no>
15 lines
285 B
Plaintext
15 lines
285 B
Plaintext
/*
|
|
* Copyright (c) 2019 Nordic Semiconductor ASA
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
&i2c0 { /* SDA P0.26, SCL P0.27, ALERT P1.11 */
|
|
isl29035@44 {
|
|
compatible = "isil,isl29035";
|
|
reg = <0x44>;
|
|
label = "ISL29035";
|
|
int-gpios = <&gpio0 11 GPIO_INT_ACTIVE_HIGH>;
|
|
};
|
|
};
|