A rust library for controlling a model train railroad system.
| Feature | Description | Status | |----------------------------------|-------------------------------------------------------------------------------------------------------|--------| | Sending control | Control of sending messages to the model railroad | DONE | | Receiving control | Possibility to handle received messages | DONE | | Configuration of the connection | Control over the configuration settings of the model railroad connection like BaudRate or FlowControl | DONE |
As rust is able to use GitHub repositories directly as dependencies you can simply add
locodrive = { git = "https://github.com/juhu1705/locodrive.git" }
to your Cargo.toml
The LocoDrive has the struct loco_controller::LocoDriveController
made for connecting to a model railroad over a serial port.
This reader will care of parsing received messages correctly before sending them to you.
The documentation is published here
To set up the project yourself please make sure to have rust installed.
To commit to this repository please consider the Contributing rules.
Please note: Always add me to your pull request to test your changes with an active model railroad connection or add some test logs to your commitment.
| Dependency | License | |--------------|---------| | tokio-serial | MIT | | tokio-util | MIT | | bytes | MIT | | tokio | MIT |
For getting the needed information about the used protocol I mostly used the rocrail wiki. Thanks for the detailed information.