xref: /freebsd/sys/contrib/device-tree/Bindings/iio/humidity/sciosense,ens210.yaml (revision b2d2a78ad80ec68d4a17f5aef97d21686cb1e29b)
1*b2d2a78aSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
2*b2d2a78aSEmmanuel Vadot%YAML 1.2
3*b2d2a78aSEmmanuel Vadot---
4*b2d2a78aSEmmanuel Vadot$id: http://devicetree.org/schemas/iio/humidity/sciosense,ens210.yaml#
5*b2d2a78aSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6*b2d2a78aSEmmanuel Vadot
7*b2d2a78aSEmmanuel Vadottitle: ScioSense ENS210 temperature and humidity sensor
8*b2d2a78aSEmmanuel Vadot
9*b2d2a78aSEmmanuel Vadotmaintainers:
10*b2d2a78aSEmmanuel Vadot  - Joshua Felmeden <jfelmeden@thegoodpenguin.co.uk>
11*b2d2a78aSEmmanuel Vadot
12*b2d2a78aSEmmanuel Vadotdescription: |
13*b2d2a78aSEmmanuel Vadot  Temperature and Humidity sensor.
14*b2d2a78aSEmmanuel Vadot
15*b2d2a78aSEmmanuel Vadot  Datasheet:
16*b2d2a78aSEmmanuel Vadot    https://www.sciosense.com/wp-content/uploads/2024/04/ENS21x-Datasheet.pdf
17*b2d2a78aSEmmanuel Vadot    https://www.sciosense.com/wp-content/uploads/2023/12/ENS210-Datasheet.pdf
18*b2d2a78aSEmmanuel Vadot
19*b2d2a78aSEmmanuel Vadotproperties:
20*b2d2a78aSEmmanuel Vadot  compatible:
21*b2d2a78aSEmmanuel Vadot    oneOf:
22*b2d2a78aSEmmanuel Vadot      - items:
23*b2d2a78aSEmmanuel Vadot          - enum:
24*b2d2a78aSEmmanuel Vadot              - sciosense,ens210a
25*b2d2a78aSEmmanuel Vadot              - sciosense,ens211
26*b2d2a78aSEmmanuel Vadot              - sciosense,ens212
27*b2d2a78aSEmmanuel Vadot              - sciosense,ens213a
28*b2d2a78aSEmmanuel Vadot              - sciosense,ens215
29*b2d2a78aSEmmanuel Vadot          - const: sciosense,ens210
30*b2d2a78aSEmmanuel Vadot      - const: sciosense,ens210
31*b2d2a78aSEmmanuel Vadot
32*b2d2a78aSEmmanuel Vadot  reg:
33*b2d2a78aSEmmanuel Vadot    maxItems: 1
34*b2d2a78aSEmmanuel Vadot
35*b2d2a78aSEmmanuel Vadot  vdd-supply: true
36*b2d2a78aSEmmanuel Vadot
37*b2d2a78aSEmmanuel Vadotrequired:
38*b2d2a78aSEmmanuel Vadot  - compatible
39*b2d2a78aSEmmanuel Vadot  - reg
40*b2d2a78aSEmmanuel Vadot
41*b2d2a78aSEmmanuel VadotadditionalProperties: false
42*b2d2a78aSEmmanuel Vadot
43*b2d2a78aSEmmanuel Vadotexamples:
44*b2d2a78aSEmmanuel Vadot  - |
45*b2d2a78aSEmmanuel Vadot    i2c {
46*b2d2a78aSEmmanuel Vadot       #address-cells = <1>;
47*b2d2a78aSEmmanuel Vadot       #size-cells = <0>;
48*b2d2a78aSEmmanuel Vadot
49*b2d2a78aSEmmanuel Vadot       temperature-sensor@43 {
50*b2d2a78aSEmmanuel Vadot           compatible = "sciosense,ens210";
51*b2d2a78aSEmmanuel Vadot           reg = <0x43>;
52*b2d2a78aSEmmanuel Vadot       };
53*b2d2a78aSEmmanuel Vadot    };
54*b2d2a78aSEmmanuel Vadot...
55*b2d2a78aSEmmanuel Vadot
56