blob: 5d8b687d5edc41b8b0b7b64bb73531025845a361 [file] [log] [blame]
Matt Ranostayce08cc92016-08-19 13:36:11 -07001* Atlas Scientific ORP-SM OEM sensor
2
3https://www.atlas-scientific.com/_files/_datasheets/_oem/ORP_oem_datasheet.pdf
4
5Required properties:
6
7 - compatible: must be "atlas,orp-sm"
8 - reg: the I2C address of the sensor
9 - interrupt-parent: should be the phandle for the interrupt controller
10 - interrupts: the sole interrupt generated by the device
11
12 Refer to interrupt-controller/interrupts.txt for generic interrupt client
13 node bindings.
14
15Example:
16
17atlas@66 {
18 compatible = "atlas,orp-sm";
19 reg = <0x66>;
20 interrupt-parent = <&gpio1>;
21 interrupts = <16 2>;
22};