tmp007.txt 770 B

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