1# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/iio/humidity/st,hts221.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: HTS221 STM humidity + temperature sensor
8
9maintainers:
10  - Lorenzo Bianconi <lorenzo@kernel.org>
11
12description: |
13   Humidity and temperature sensor with I2C interface and data ready
14   interrupt.
15
16properties:
17  compatible:
18    const: st,hts221
19
20  reg:
21    maxItems: 1
22
23  drive-open-drain:
24    type: boolean
25    description:
26      The interrupt/data ready line will be configured as open drain, which
27      is useful if several sensors share the same interrupt line.
28
29  interrupts:
30    maxItems: 1
31
32required:
33  - compatible
34  - reg
35
36additionalProperties: false
37
38examples:
39  - |
40    #include <dt-bindings/interrupt-controller/irq.h>
41    i2c {
42        #address-cells = <1>;
43        #size-cells = <0>;
44
45        hts221@5f {
46            compatible = "st,hts221";
47            reg = <0x5f>;
48            interrupt-parent = <&gpio0>;
49            interrupts = <0 IRQ_TYPE_EDGE_RISING>;
50        };
51    };
52...
53