0001 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
0002 %YAML 1.2
0003 ---
0004 $id: "http://devicetree.org/schemas/iio/temperature/ti,tmp117.yaml#"
0005 $schema: "http://devicetree.org/meta-schemas/core.yaml#"
0006
0007 title: "TI TMP117 - Digital temperature sensor with integrated NV memory"
0008
0009 description: |
0010 TI TMP117 - Digital temperature sensor with integrated NV memory that supports
0011 I2C interface.
0012 https://www.ti.com/lit/gpn/tmp1
0013
0014 maintainers:
0015 - Puranjay Mohan <puranjay12@gmail.com>
0016
0017 properties:
0018 compatible:
0019 enum:
0020 - ti,tmp117
0021
0022 reg:
0023 maxItems: 1
0024
0025 required:
0026 - compatible
0027 - reg
0028
0029 additionalProperties: false
0030
0031 examples:
0032 - |
0033 i2c {
0034 #address-cells = <1>;
0035 #size-cells = <0>;
0036
0037 tmp117@48 {
0038 compatible = "ti,tmp117";
0039 reg = <0x48>;
0040 };
0041 };