mlx90614.txt 743 B

123456789101112131415161718192021222324
  1. * Melexis MLX90614 contactless IR temperature sensor
  2. http://melexis.com/Infrared-Thermometer-Sensors/Infrared-Thermometer-Sensors/MLX90614-615.aspx
  3. Required properties:
  4. - compatible: should be "melexis,mlx90614"
  5. - reg: the I2C address of the sensor
  6. Optional properties:
  7. - wakeup-gpios: device tree identifier of the GPIO connected to the SDA line
  8. to hold low in order to wake up the device. In normal operation, the
  9. GPIO is set as input and will not interfere in I2C communication. There
  10. is no need for a GPIO driving the SCL line. If no GPIO is given, power
  11. management is disabled.
  12. Example:
  13. mlx90614@5a {
  14. compatible = "melexis,mlx90614";
  15. reg = <0x5a>;
  16. wakeup-gpios = <&gpio0 2 GPIO_ACTIVE_HIGH>;
  17. };