xref: /freebsd/sys/contrib/device-tree/Bindings/iio/light/vishay,veml6075.yaml (revision 96190b4fef3b4a0cc3ca0606b0c4e3e69a5e6717)
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/iio/light/vishay,veml6075.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Vishay VEML6075 UVA and UVB sensor
8
9maintainers:
10  - Javier Carrasco <javier.carrasco.cruz@gmail.com>
11
12properties:
13  compatible:
14    const: vishay,veml6075
15
16  reg:
17    maxItems: 1
18
19  vdd-supply: true
20
21required:
22  - compatible
23  - reg
24
25additionalProperties: false
26
27examples:
28  - |
29    i2c {
30        #address-cells = <1>;
31        #size-cells = <0>;
32
33        uv-sensor@10 {
34            compatible = "vishay,veml6075";
35            reg = <0x10>;
36            vdd-supply = <&vdd_reg>;
37        };
38    };
39...
40