Index: leahi_dialin/ro/reverse_osmosis.py =================================================================== diff -u -r2bb54c406eebc4e090a0e70e9b62eb55ccd92f1b -rdfbb4f080638b65d9836b22bd5c76d46d53abba5 --- leahi_dialin/ro/reverse_osmosis.py (.../reverse_osmosis.py) (revision 2bb54c406eebc4e090a0e70e9b62eb55ccd92f1b) +++ leahi_dialin/ro/reverse_osmosis.py (.../reverse_osmosis.py) (revision dfbb4f080638b65d9836b22bd5c76d46d53abba5) @@ -5,7 +5,7 @@ # THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN # WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. # -# @file treatment_delivery.py +# @file filtration_purification.py # # @author (last) Dara Navaei # @date (last) 26-Feb-2024 @@ -34,7 +34,7 @@ class RO(AbstractSubSystem): """ - Treatment Delivery (RO) Dialin object API. + Reverse Osmosis ( RO aka IOFP ) Dialin object API. It provides the basic interface to communicate with the RO firmware. """ # RO debug event max count @@ -105,7 +105,7 @@ # Create command groups self.conductivity = ROConductivitySensors(self.can_interface, self.logger) - self.flow = ROFlowSensors(self.can_interface, self.logger) + self.flows = ROFlowSensors(self.can_interface, self.logger) self.pumps = ROPumps(self.can_interface, self.logger) self.flows = ROFlowSensors(self.can_interface, self.logger) self.levels = ROLevels(self.can_interface, self.logger)