Skip to content

Commit 1cfc4c4

Browse files
authored
fix Opentrons integration (#689)
1 parent 8f42044 commit 1cfc4c4

File tree

19 files changed

+297
-1226
lines changed

19 files changed

+297
-1226
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ await lh.return_tips()
4747
To run the same protocol on an **Opentrons**, use the following:
4848

4949
```python
50-
from pylabrobot.liquid_handling.backends import OpentronsBackend
50+
from pylabrobot.liquid_handling.backends import OpentronsOT2Backend
5151
deck = Deck.load_from_json_file("opentrons-layout.json")
52-
lh = LiquidHandler(backend=OpentronsBackend(host="x.x.x.x"), deck=deck)
52+
lh = LiquidHandler(backend=OpentronsOT2Backend(host="x.x.x.x"), deck=deck)
5353
```
5454

5555
Or **Tecan** (also works on any operating system!):

docs/api/pylabrobot.liquid_handling.backends.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Hardware
2727
backends.hamilton.base.HamiltonLiquidHandler
2828
backends.hamilton.STAR_backend.STAR
2929
backends.hamilton.vantage_backend.Vantage
30-
backends.opentrons_backend.OpentronsBackend
30+
backends.opentrons_backend.OpentronsOT2Backend
3131
backends.tecan.EVO_backend.EVOBackend
3232

3333
Net

pylabrobot/liquid_handling/backends/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from .hamilton.STAR_backend import STAR, STARBackend
55
from .hamilton.vantage_backend import Vantage, VantageBackend
66
from .http import HTTPBackend
7-
from .opentrons_backend import OpentronsBackend
7+
from .opentrons_backend import OpentronsOT2Backend
88
from .saver_backend import SaverBackend
99
from .serializing_backend import (
1010
SerializingBackend,

0 commit comments

Comments
 (0)