43 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)2%YAML 1.23---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 sensor8 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.pdf15 16properties:17 compatible:18 const: ti,tmp00619 20 reg:21 maxItems: 122 23 vdd-supply:24 description: provide VDD power to the sensor.25 26required:27 - compatible28 - reg29 30additionalProperties: false31 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