1* TI TMP007 - IR thermopile sensor with integrated math engine
2
3Link to datasheet: http://www.ti.com/lit/ds/symlink/tmp007.pdf
4
5Required properties:
6
7  - compatible: should be "ti,tmp007"
8  - reg: the I2C address of the sensor (changeable via ADR pins)
9		------------------------------
10		|ADR1 | ADR0 | Device Address|
11		------------------------------
12		   0      0        0x40
13		   0	  1	   0x41
14		   0	 SDA       0x42
15		   0     SCL       0x43
16		   1      0        0x44
17		   1      1        0x45
18		   1	 SDA	   0x46
19		   1     SCL       0x47
20
21Optional properties:
22
23  - interrupts: interrupt mapping for GPIO IRQ (level active low)
24
25Example:
26
27tmp007@40 {
28        compatible = "ti,tmp007";
29        reg = <0x40>;
30	interrupt-parent = <&gpio0>;
31	interrupts = <5 0x08>;
32};
33
34