feat(thermo_fisher): add Thermo Scientific ALPS 300/3000/5000 heat sealer drivers#1173
Merged
Conversation
…aler drivers Serial ASCII drivers for the Thermo Scientific ALPS 300, 3000, and 5000 heat sealers. The three models share a command core (status/error polling, temperature and time setpoints, seal) in an abstract ThermoScientificALPSSealer base; each model subclass supplies its own status-bit layout, error table, and ready-state handling. The 5000 adds initialisation, force-sensor control, foil length, sealing distance, and shuttle commands. Point the KUBE driver's ALPS-mode rejection at these drivers. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Add a user-guide index for the ALPS heat sealer family and a hello-world notebook for each model, and list them under the Thermo Fisher user guide. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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.
Adds drivers for the Thermo Scientific ALPS 300, ALPS 3000, and ALPS 5000 heat
sealers.
ThermoScientificALPSSealer— abstract base with the shared ASCII/RS-232protocol: 9600-8N1, CR-terminated, command echoed in front of the reply.
Shared commands:
?status,Eerror code,Sseal,A/Bsettemperature/time,
C/D/Fread setpoints and current temperature. Itimplements the transport, the status/error polling state machine, and the
temperature/time setpoints.
ThermoScientificALPS300,ThermoScientificALPS3000,ThermoScientificALPS5000— one subclass per model. The models share thelow status bits (error, in-progress, below-temperature) but differ in the
remaining status bits and in their error tables, so each supplies its own
STATUSflags,ERRORS, and ready-state masks.ThermoScientificALPS5000additionally exposesinitialise(),set_force(),enable_force_sensor(),set_foil_length(),set_sealing_distance(), andshuttle_in()/shuttle_out().its message now points at these drivers.
Not yet tested against hardware.
🤖 Generated with Claude Code