Path: blob/master/Documentation/devicetree/bindings/iio/temperature/ti,tmp006.yaml
26309 views
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)1%YAML 1.22---3$id: http://devicetree.org/schemas/iio/temperature/ti,tmp006.yaml#4$schema: http://devicetree.org/meta-schemas/core.yaml#56title: TI TMP006 IR thermopile sensor78maintainers:9- Peter Meerwald <pmeerw@pmeerw.net>1011description: |12TI TMP006 - Infrared Thermopile Sensor in Chip-Scale Package.13https://cdn.sparkfun.com/datasheets/Sensors/Temp/tmp006.pdf1415properties:16compatible:17const: ti,tmp0061819reg:20maxItems: 12122vdd-supply:23description: provide VDD power to the sensor.2425interrupts:26maxItems: 12728required:29- compatible30- reg3132additionalProperties: false3334examples:35- |36#include <dt-bindings/interrupt-controller/irq.h>37i2c {38#address-cells = <1>;39#size-cells = <0>;40temperature-sensor@40 {41compatible = "ti,tmp006";42reg = <0x40>;43vdd-supply = <&ldo4_reg>;44interrupt-parent = <&gpio1>;45interrupts = <4 IRQ_TYPE_EDGE_FALLING>;46};47};484950