Add Tecan Infinite state and control APIs - #1220
Merged
rickwierenga merged 3 commits intoAug 28, 2026
Merged
Conversation
added 2 commits
August 26, 2026 17:09
Expose reader-reported tray, plate sensor, temperature, shaking, and instrument states through the Infinite 200 PRO backend. Confirm state-changing commands with device readback. Do not reinitialize the reader when a lost response leaves tray movement or shaking state unknown. Treat timed busy frames as valid reader responses and confirm the final transport position.
hazlamshamin
force-pushed
the
feat/tecan-infinite-state-readback
branch
from
August 26, 2026 11:18
6a9d519 to
368f7c8
Compare
Comment on lines
+636
to
+640
|
|
||
| async def get_temperature_status(self) -> TecanInfiniteTemperatureStatus: | ||
| """Read whether plate-temperature control is on or off.""" | ||
|
|
||
| return await self._get_temperature_status() |
Member
There was a problem hiding this comment.
can you name the methods that read data off the device request_ per PLR convention? after that this will be ready to merge
Contributor
Author
There was a problem hiding this comment.
done as requested
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Expose the Infinite 200 PRO reader-reported transport, plate sensor, temperature, shaking, and instrument state. State-changing calls check device readback and avoid automatic reinitialization when a lost response leaves the hardware state unknown.
BY#T...frames as valid busy responses during tray movement, then confirm the reportedINorOUTposition.Verification
make test— 2,411 passed and 1 skipped.python -m pytest pylabrobot/legacy/plate_reading/tecan— 83 passed with two existing Spark warnings.git diff --check— passed.INandOUTreadback,FREEandTAKENplate-sensor states, temperature targets of 0.0, 32.0, and 42.0 °C, and linear and orbital shaking from 1.0 to 6.0 mm.make lint,make format-check, andmake typecheckreport existing errors in unchanged files. The changed files pass the applicable targeted checks.