Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/sys/contrib/device-tree/Bindings/iio/temperature/ti,tmp006.yaml
48525 views
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
7
title: TI TMP006 IR thermopile sensor
8
9
maintainers:
10
- Peter Meerwald <pmeerw@pmeerw.net>
11
12
description: |
13
TI TMP006 - Infrared Thermopile Sensor in Chip-Scale Package.
14
https://cdn.sparkfun.com/datasheets/Sensors/Temp/tmp006.pdf
15
16
properties:
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
26
required:
27
- compatible
28
- reg
29
30
additionalProperties: false
31
32
examples:
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
44