1# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/iio/temperature/ti,tmp006.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: TI TMP006 IR thermopile sensor 8 9maintainers: 10 - Peter Meerwald <pmeerw@pmeerw.net> 11 12description: | 13 TI TMP006 - Infrared Thermopile Sensor in Chip-Scale Package. 14 https://cdn.sparkfun.com/datasheets/Sensors/Temp/tmp006.pdf 15 16properties: 17 compatible: 18 const: ti,tmp006 19 20 reg: 21 maxItems: 1 22 23 vdd-supply: 24 description: provide VDD power to the sensor. 25 26required: 27 - compatible 28 - reg 29 30additionalProperties: false 31 32examples: 33 - | 34 i2c { 35 #address-cells = <1>; 36 #size-cells = <0>; 37 temperature-sensor@40 { 38 compatible = "ti,tmp006"; 39 reg = <0x40>; 40 vdd-supply = <&ldo4_reg>; 41 }; 42 }; 43