1*5956d97fSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2*5956d97fSEmmanuel Vadot%YAML 1.2 3*5956d97fSEmmanuel Vadot--- 4*5956d97fSEmmanuel Vadot$id: "http://devicetree.org/schemas/iio/temperature/ti,tmp117.yaml#" 5*5956d97fSEmmanuel Vadot$schema: "http://devicetree.org/meta-schemas/core.yaml#" 6*5956d97fSEmmanuel Vadot 7*5956d97fSEmmanuel Vadottitle: "TI TMP117 - Digital temperature sensor with integrated NV memory" 8*5956d97fSEmmanuel Vadot 9*5956d97fSEmmanuel Vadotdescription: | 10*5956d97fSEmmanuel Vadot TI TMP117 - Digital temperature sensor with integrated NV memory that supports 11*5956d97fSEmmanuel Vadot I2C interface. 12*5956d97fSEmmanuel Vadot https://www.ti.com/lit/gpn/tmp1 13*5956d97fSEmmanuel Vadot 14*5956d97fSEmmanuel Vadotmaintainers: 15*5956d97fSEmmanuel Vadot - Puranjay Mohan <puranjay12@gmail.com> 16*5956d97fSEmmanuel Vadot 17*5956d97fSEmmanuel Vadotproperties: 18*5956d97fSEmmanuel Vadot compatible: 19*5956d97fSEmmanuel Vadot enum: 20*5956d97fSEmmanuel Vadot - ti,tmp117 21*5956d97fSEmmanuel Vadot 22*5956d97fSEmmanuel Vadot reg: 23*5956d97fSEmmanuel Vadot maxItems: 1 24*5956d97fSEmmanuel Vadot 25*5956d97fSEmmanuel Vadotrequired: 26*5956d97fSEmmanuel Vadot - compatible 27*5956d97fSEmmanuel Vadot - reg 28*5956d97fSEmmanuel Vadot 29*5956d97fSEmmanuel VadotadditionalProperties: false 30*5956d97fSEmmanuel Vadot 31*5956d97fSEmmanuel Vadotexamples: 32*5956d97fSEmmanuel Vadot - | 33*5956d97fSEmmanuel Vadot i2c { 34*5956d97fSEmmanuel Vadot #address-cells = <1>; 35*5956d97fSEmmanuel Vadot #size-cells = <0>; 36*5956d97fSEmmanuel Vadot 37*5956d97fSEmmanuel Vadot tmp117@48 { 38*5956d97fSEmmanuel Vadot compatible = "ti,tmp117"; 39*5956d97fSEmmanuel Vadot reg = <0x48>; 40*5956d97fSEmmanuel Vadot }; 41*5956d97fSEmmanuel Vadot }; 42