Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix ztouch Probing #354

Merged
merged 6 commits into from
Jan 9, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
reverse artefact in Centrifuge docs
BioCam committed Jan 9, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 50c57378e35a43f6c75886f0d8c0a7f4e9372913
9 changes: 3 additions & 6 deletions docs/user_guide/centrifuge.md
Original file line number Diff line number Diff line change
@@ -137,15 +137,12 @@ To interact with the centrifuge programmatically, you need its FTDI device ID. U
Use the following code to configure the centrifuge in Python:

```python
from pylabrobot.centrifuge import Centrifuge, VSpin
from pylabrobot import Centrifuge
from pylabrobot.backends.vspin import VSpin

# Replace with your specific FTDI device ID and bucket position for profile in Agilent Centrifuge Config Tool.
backend = VSpin(bucket_1_position=6969, device_id="XXXXXXXX")
centrifuge = Centrifuge(
backend=backend,
name="centrifuge",
size_x=1, size_y=1, size_z=1
)
centrifuge = Centrifuge(backend=backend)

# Initialize the centrifuge.
await centrifuge.setup()