A cross-platform motion control library for Thorlabs systems, written in Rust.
[!INFO] This project is still growing. We are happy to add support for any new devices and functions as needed. Please open a new GitHub issue to make a request.
- Designed for robotics, automation, and scientific applications.
- Python and Rust API
- Fast and efficient, with minimal overhead.
- Runs on macOS, Linux, and Windows.
Python users
Install from PyPI using Pip:
pip install thormotion
Then import the package at the top of your python file:
import thormotion
Rust users
Run the following Cargo command in your project directory:
cargo add thormotion
Or add Thormotion to your Cargo.toml file:
[dependencies]
thormotion = "*" # Check for the latest version on crates.io
Please cite Thormotion in your research. To find the correct DOI for the version of Thormotion you are using, visit
Zenodo and search for thormotion
. Alternatively, You can cite all versions by using the
generic DOI 10.5281/zenodo.15006067 which always resolves to the latest
release.
Amelia Fraser-Dale. (2025). MillieFD/thormotion: Thormotion v0.4.0
Zenodo. https://doi.org/10.5281/zenodo.17064172
A complete list of the supported Thorlabs devices and functions can be found on docs.rs.
Thormotion implements the Thorlabs APT communication protocol. For full details, please refer to the APT protocol documentation.
Thormotion is an open-source project! Contributions are welcome, and we are always looking for ways to improve the library. If you would like to help out, please check the list of open issues. If you have an idea for a new feature or would like to report a bug, please open a new issue or submit a pull request. Note that all code submissions and pull requests are assumed to agree with the BSD 3-Clause Licence.
This project is licensed under the BSD 3-Clause Licence. Opening a pull request indicates agreement with these terms.