Path: blob/master/Documentation/devicetree/bindings/iio/temperature/melexis,mlx90614.yaml
26309 views
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)1%YAML 1.22---3$id: http://devicetree.org/schemas/iio/temperature/melexis,mlx90614.yaml#4$schema: http://devicetree.org/meta-schemas/core.yaml#56title: Melexis MLX90614/MLX90615 contactless IR temperature sensor78maintainers:9- Peter Meerwald <pmeerw@pmeerw.net>10- Crt Mori <cmo@melexis.com>1112description: |13http://melexis.com/Infrared-Thermometer-Sensors/Infrared-Thermometer-Sensors/MLX90614-615.aspx1415properties:16compatible:17enum:18- melexis,mlx9061419- melexis,mlx906152021reg:22maxItems: 12324wakeup-gpios:25description:26GPIO connected to the SDA line to hold low in order to wake up the27device. In normal operation, the GPIO is set as input and will28not interfere in I2C communication. There is no need for a GPIO29driving the SCL line. If no GPIO is given, power management is disabled.30maxItems: 13132required:33- compatible34- reg3536additionalProperties: false3738examples:39- |40#include <dt-bindings/gpio/gpio.h>41i2c {42#address-cells = <1>;43#size-cells = <0>;4445temp-sensor@5a {46compatible = "melexis,mlx90614";47reg = <0x5a>;48wakeup-gpios = <&gpio0 2 GPIO_ACTIVE_HIGH>;49};50};51...525354