0001 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/iio/chemical/atlas,sensor.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: Atlas Scientific OEM + EZO sensors
0008
0009 maintainers:
0010 - Matt Ranostay <matt.ranostay@konsulko.com>
0011
0012 description: |
0013 Atlas Scientific OEM + EZO sensors connected via I2C
0014
0015 Datasheets:
0016 http://www.atlas-scientific.com/_files/_datasheets/_oem/DO_oem_datasheet.pdf
0017 http://www.atlas-scientific.com/_files/_datasheets/_oem/EC_oem_datasheet.pdf
0018 http://www.atlas-scientific.com/_files/_datasheets/_oem/ORP_oem_datasheet.pdf
0019 http://www.atlas-scientific.com/_files/_datasheets/_oem/pH_oem_datasheet.pdf
0020 http://www.atlas-scientific.com/_files/_datasheets/_oem/RTD_oem_datasheet.pdf
0021 http://www.atlas-scientific.com/_files/_datasheets/_probe/EZO_CO2_Datasheet.pdf
0022 https://www.atlas-scientific.com/files/EZO_O2_datasheet.pdf
0023 https://www.atlas-scientific.com/files/EZO_HUM_Datasheet.pdf
0024
0025 properties:
0026 compatible:
0027 enum:
0028 - atlas,do-sm
0029 - atlas,ec-sm
0030 - atlas,orp-sm
0031 - atlas,ph-sm
0032 - atlas,rtd-sm
0033 - atlas,co2-ezo
0034 - atlas,o2-ezo
0035 - atlas,hum-ezo
0036
0037 reg:
0038 maxItems: 1
0039
0040 interrupts:
0041 maxItems: 1
0042
0043 required:
0044 - compatible
0045 - reg
0046
0047 additionalProperties: false
0048
0049 examples:
0050 - |
0051 i2c {
0052 #address-cells = <1>;
0053 #size-cells = <0>;
0054
0055 atlas@66 {
0056 compatible = "atlas,orp-sm";
0057 reg = <0x66>;
0058 interrupt-parent = <&gpio1>;
0059 interrupts = <16 2>;
0060 };
0061 };