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