You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/user_guide/00_liquid-handling/hamilton-star/star_lld.md
+24Lines changed: 24 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,30 @@ The `lld_mode` parameter is a list, so you can specify a different LLD mode for
22
22
The `lld_mode` parameter is only available when using the `STAR` backend.
23
23
```
24
24
25
+
## Going into or out of the liquid
26
+
27
+
You can use the `immersion_depth` backend kwarg to move the tip with respect to the found liquid surface. A positive value means to go deeper into the liquid, a negative value means to go above the liquid.
28
+
29
+
Going 1mm below the liquid for aspiration:
30
+
31
+
```python
32
+
await lh.aspirate(
33
+
[tube],
34
+
vols=[300],
35
+
lld_mode=[STARBackend.LLDMode.GAMMA],
36
+
immersion_depth=[1])
37
+
```
38
+
39
+
Going 1mm above the liquid for dispens:
40
+
41
+
```python
42
+
await lh.dispense(
43
+
[tube],
44
+
vols=[300],
45
+
lld_mode=[STARBackend.LLDMode.GAMMA],
46
+
immersion_depth=[-1])
47
+
```
48
+
25
49
## Catching errors
26
50
27
51
All channelized pipetting operations raise a `ChannelizedError` exception when an error occurs, so that we can have specific error handling for each channel.
0 commit comments