1/* 2 * Copyright (c) 2023 SILA Embedded Solutions GmbH 3 * SPDX-License-Identifier: Apache-2.0 4 */ 5 6 &arduino_i2c { 7 status = "okay"; 8 clock-frequency = <I2C_BITRATE_FAST>; 9 10 max31790_max31790: max31790@20 { 11 compatible = "maxim,max31790"; 12 status = "okay"; 13 reg = <0x20>; 14 15 max31790_max31790_pwm: max31790_max31790_pwm { 16 compatible = "maxim,max31790-pwm"; 17 status = "okay"; 18 pwm-controller; 19 #pwm-cells = <2>; 20 }; 21 }; 22}; 23