1/* 2 * Copyright (c) 2025 Daniel Kampert 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7/ { 8 9 aliases { 10 light-sensor = &apds9306; 11 }; 12}; 13 14&i2c0 { 15 apds9306: apds9306@52 { 16 status = "okay"; 17 compatible = "avago,apds9306"; 18 reg = <0x52>; 19 gain = <1>; 20 resolution = <13>; 21 measurement-period = <2000>; 22 }; 23}; 24