1/* 2 * Copyright (c) 2021 Leonard Pollak 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7&i2c1 { 8 status = "okay"; 9 clock-frequency = <I2C_BITRATE_FAST>; 10 sht4x@44 { 11 status = "okay"; 12 compatible = "sensirion,sht4x"; 13 reg = <0x44>; 14 repeatability = <2>; 15 }; 16 sgp40@59 { 17 status = "okay"; 18 compatible = "sensirion,sgp40"; 19 reg = <0x59>; 20 enable-selftest; 21 }; 22}; 23