Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/Documentation/devicetree/bindings/iio/pressure/aosong,adp810.yaml
38301 views
1
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
2
%YAML 1.2
3
---
4
$id: http://devicetree.org/schemas/iio/pressure/aosong,adp810.yaml#
5
$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7
title: aosong adp810 differential pressure sensor
8
9
maintainers:
10
- Akhilesh Patil <akhilesh@ee.iitb.ac.in>
11
12
description:
13
ADP810 is differential pressure and temperature sensor. It has I2C bus
14
interface with fixed address of 0x25. This sensor supports 8 bit CRC for
15
reliable data transfer. It can measure differential pressure in the
16
range -500 to 500Pa and temperate in the range -40 to +85 degree celsius.
17
18
properties:
19
compatible:
20
enum:
21
- aosong,adp810
22
23
reg:
24
maxItems: 1
25
26
vdd-supply: true
27
28
required:
29
- compatible
30
- reg
31
- vdd-supply
32
33
additionalProperties: false
34
35
examples:
36
- |
37
i2c {
38
#address-cells = <1>;
39
#size-cells = <0>;
40
pressure-sensor@25 {
41
compatible = "aosong,adp810";
42
reg = <0x25>;
43
vdd-supply = <&vdd_regulator>;
44
};
45
};
46
47