1/*
2 * Copyright (c) 2023 Endor AG
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7/*
8 * Example configuration of a is31fl3216a device on an Arduino I2C bus.
9 *
10 * Device address 0x74 is assumed. Your device may have a different
11 * address; check your device documentation if unsure.
12 */
13&arduino_i2c {
14	status = "okay";
15	is31fl3216a@74 {
16		compatible = "issi,is31fl3216a";
17		reg = <0x74>;
18	};
19};
20