Skip to content

Commit

Permalink
Small changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jwwojak committed Jul 16, 2024
1 parent 48ae5d5 commit 7b1fe38
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions api/docs/v2/pipettes/loading.rst
Original file line number Diff line number Diff line change
Expand Up @@ -267,17 +267,17 @@ Remember, LLD will not work with used tips.
Turing LLD Off and On
---------------------

You can turn LLD off and on throughout a protocol. To turn off LLD, add ``pipette.liquid_presence_detection=False`` at the point in a protocol where it needs to be disabled, usually between picking up a new tip and aspirating a liquid. This overrides the global argument, ``liquid_presence_detection=True`` that we set on :py:meth:`~.ProtocolContext.load_instrument`. Let's try this starting after picking up a new tip.
You can turn LLD off and on throughout a protocol. To turn LLD off, add ``pipette.liquid_presence_detection=False`` at the point in a protocol where it needs to be disabled, usually between picking up a new tip and aspirating a liquid. This overrides the global argument, ``liquid_presence_detection=True`` that we set on :py:meth:`~.ProtocolContext.load_instrument`. Let's try this starting after picking up a new tip.

.. code-block:: python
pipette.pick_up_tip(tiprack2)
pipette.liquid_presence_detection=False
pipette.aspirate(100, reservoir["A2"])
Going forward, the pipette will not perform an LLD check until you turn this feature back on.
Going forward, the pipette will not perform LLD until you turn this feature back on.

To reactivate LLD, add ``pipette.liquid_presence_detection=True`` at the point in a protocol where it needs to be enabled, usually between picking up a new tip and aspirating a liquid.
To turn LLD on after deactivating it, add ``pipette.liquid_presence_detection=True`` at the point in a protocol where it needs to be enabled, usually between picking up a new tip and aspirating a liquid.

.. code-block:: python
Expand Down

0 comments on commit 7b1fe38

Please sign in to comment.