thormotion 0.4.2

A cross-platform motion control library for Thorlabs systems, written in Rust.
Documentation
/*
Project: thormotion
GitHub: https://github.com/MillieFD/thormotion

BSD 3-Clause License, Copyright (c) 2025, Amelia Fraser-Dale

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the conditions of the LICENSE are met.
*/

/* ----------------------------------------------------------------------------- Private Modules */

mod channel_enable_state;
mod home;
mod identify;
mod move_absolute;
mod move_relative;
mod status_bits;
mod status_update;
mod stop;
mod update_messages;

/* ----------------------------------------------------------------------------- Private Exports */

pub(crate) use channel_enable_state::*;
pub(crate) use home::*;
pub(crate) use identify::*;
pub(crate) use move_absolute::*;
pub(crate) use move_relative::*;
pub(crate) use status_bits::*;
pub(crate) use status_update::*;
pub(crate) use stop::*;
pub(crate) use update_messages::*;