62 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/iio/chemical/atlas,sensor.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Atlas Scientific OEM + EZO sensors8 9maintainers:10 - Matt Ranostay <matt.ranostay@konsulko.com>11 12description: |13 Atlas Scientific OEM + EZO sensors connected via I2C14 15 Datasheets:16 http://www.atlas-scientific.com/_files/_datasheets/_oem/DO_oem_datasheet.pdf17 http://www.atlas-scientific.com/_files/_datasheets/_oem/EC_oem_datasheet.pdf18 http://www.atlas-scientific.com/_files/_datasheets/_oem/ORP_oem_datasheet.pdf19 http://www.atlas-scientific.com/_files/_datasheets/_oem/pH_oem_datasheet.pdf20 http://www.atlas-scientific.com/_files/_datasheets/_oem/RTD_oem_datasheet.pdf21 http://www.atlas-scientific.com/_files/_datasheets/_probe/EZO_CO2_Datasheet.pdf22 https://www.atlas-scientific.com/files/EZO_O2_datasheet.pdf23 https://www.atlas-scientific.com/files/EZO_HUM_Datasheet.pdf24 25properties:26 compatible:27 enum:28 - atlas,do-sm29 - atlas,ec-sm30 - atlas,orp-sm31 - atlas,ph-sm32 - atlas,rtd-sm33 - atlas,co2-ezo34 - atlas,o2-ezo35 - atlas,hum-ezo36 37 reg:38 maxItems: 139 40 interrupts:41 maxItems: 142 43required:44 - compatible45 - reg46 47additionalProperties: false48 49examples:50 - |51 i2c {52 #address-cells = <1>;53 #size-cells = <0>;54 55 atlas@66 {56 compatible = "atlas,orp-sm";57 reg = <0x66>;58 interrupt-parent = <&gpio1>;59 interrupts = <16 2>;60 };61 };62