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/iswap-module.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,42 +6,42 @@ The `R0` module allows fine grained control of the iSWAP gripper.
6
6
7
7
- Parking
8
8
9
-
You can park the iSWAP using {meth}`~pylabrobot.liquid_handling.backends.hamilton.STAR_backend.STAR.park_iswap`.
9
+
You can park the iSWAP using {meth}`~pylabrobot.liquid_handling.backends.hamilton.STAR_backend.STARBackend.park_iswap`.
10
10
11
11
```python
12
12
await star.park_iswap()
13
13
```
14
14
15
15
- Opening gripper:
16
16
17
-
You can open the iSWAP gripper using {meth}`~pylabrobot.liquid_handling.backends.hamilton.STAR_backend.STAR.iswap_open_gripper`. Warning: this will release any object that is gripped. Used for error recovery.
17
+
You can open the iSWAP gripper using {meth}`~pylabrobot.liquid_handling.backends.hamilton.STAR_backend.STARBackend.iswap_open_gripper`. Warning: this will release any object that is gripped. Used for error recovery.
18
18
19
19
```python
20
20
await star.iswap_open_gripper()
21
21
```
22
22
23
23
## Rotations
24
24
25
-
You can rotate the iSWAP to 12 predifined positions using {meth}`~pylabrobot.liquid_handling.backends.hamilton.STAR_backend.STAR.iswap_rotate`.
25
+
You can rotate the iSWAP to 12 predifined positions using {meth}`~pylabrobot.liquid_handling.backends.hamilton.STAR_backend.STARBackend.iswap_rotate`.
26
26
27
27
the positions and their corresponding integer specifications are shown visually here.
28
28
29
29

30
30
31
31
For example to extend the iSWAP fully to the left, the position parameter to `iswap_rotate` would be `12`
32
32
33
-
You can control the wrist (T-drive) and rotation drive (W-drive) individually using {meth}`~pylabrobot.liquid_handling.backends.hamilton.STAR_backend.STAR.rotate_iswap_wrist` and {meth}`~pylabrobot.liquid_handling.backends.hamilton.STAR_backend.STAR.rotate_iswap_rotation_drive` respectively. Make sure you have enough space (you can use {meth}`~pylabrobot.liquid_handling.backends.hamilton.STAR_backend.STAR.move_iswap_y_relative`)
33
+
You can control the wrist (T-drive) and rotation drive (W-drive) individually using {meth}`~pylabrobot.liquid_handling.backends.hamilton.STAR_backend.STARBackend.rotate_iswap_wrist` and {meth}`~pylabrobot.liquid_handling.backends.hamilton.STAR_backend.STARBackend.rotate_iswap_rotation_drive` respectively. Make sure you have enough space (you can use {meth}`~pylabrobot.liquid_handling.backends.hamilton.STAR_backend.STARBackend.move_iswap_y_relative`)
You can make the iswap move more slowly during sensitive operations using {meth}`~pylabrobot.liquid_handling.backends.hamilton.STAR_backend.STAR.slow_iswap`. This is useful when you want to avoid splashing or other disturbances.
44
+
You can make the iswap move more slowly during sensitive operations using {meth}`~pylabrobot.liquid_handling.backends.hamilton.STAR_backend.STARBackend.slow_iswap`. This is useful when you want to avoid splashing or other disturbances.
Copy file name to clipboardExpand all lines: docs/user_guide/00_liquid-handling/hamilton-star/star_lld.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,16 +5,16 @@ Liquid level detection (LLD) is a feature that allows the Hamilton STAR(let) to
5
5
To use LLD, you need to specify the LLD mode when calling the `aspirate` or `dispense` methods. Here is how you can use pressure or capacative LLD with the `aspirate` :
Copy file name to clipboardExpand all lines: docs/user_guide/00_liquid-handling/hamilton-star/z-probing.ipynb
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -113,7 +113,7 @@
113
113
"cell_type": "markdown",
114
114
"metadata": {},
115
115
"source": [
116
-
"Use `STAR.probe_z_height_using_channel` to probe the z-height of a single point at the current location. This function will slowly lower the channel until the liquid level sensor detects a change in capacitance. The z-height of the point of the tip is then returned."
116
+
"Use `STARBackend.probe_z_height_using_channel` to probe the z-height of a single point at the current location. This function will slowly lower the channel until the liquid level sensor detects a change in capacitance. The z-height of the point of the tip is then returned."
117
117
]
118
118
},
119
119
{
@@ -287,7 +287,7 @@
287
287
"See above for more information on moving channels.\n",
288
288
"\n",
289
289
"```{warning}\n",
290
-
"Make sure the tip is at a safe height above the labware before moving the channel. Use `STAR.move_channel_z` to move the channel to a safe height.\n",
290
+
"Make sure the tip is at a safe height above the labware before moving the channel. Use `STARBackend.move_channel_z` to move the channel to a safe height.\n",
0 commit comments