A Rust lib to send Gcode via UART to a 3D printer

A stream based GCode sender. The api is still in progress and subject to change.

Sample Code:

```rust use gcodeserial::printeractions::PrinterActions; use gcode_serial::action::{Action, Command, TelemetryData};

use tokio::sync::broadcast; use tokio::runtime::Runtime;

fn main() { // initialize Tokio runtime let t = Runtime::new().unwrap();

let filename = "test.gcode";

t.block_on(async move {
    let (tx, _) = broadcast::channel(32);

    let t = tx.clone();
    tokio::spawn(async move {
        // create printer object
        let mut pa = PrinterActions::new(t);
        // start printer service
        pa.start().await;
    });

    // send print start command
    tx.send(Action::Command(Command::StartPrint(filename)));

    let mut rx = tx.subscribe();
    // monitor for receiving actions
    loop {
        if let Ok(v) = rx.recv().await {
            match v {
                Action::Telemetry(t) => {
                    match t {
                        TelemetryData::Temps(v) => {
                            println!("Extruder temp: {}; Bed temp: {}", v.ex_temp, v.bed_temp);
                        }
                        TelemetryData::Progress(x) => {
                            println!("Number of commands left in que: {}", x);
                        }
                        TelemetryData::TargetExtruderTemp(t) => {
                            println!("Target Extruder Temp change: {}", t);
                        }
                        TelemetryData::TargetBedTemp(t) => {
                            println!("Target Extruder Temp change: {}", t);
                        }
                        TelemetryData::TotalCommandCount(n) => {
                            println!("Number of total commands to send: {}", n);
                        }
                        TelemetryData::ActiveFile(f) => {
                            println!("Current file changed: {}", f.unwrap().name);
                        }
                        _ => {}
                    }
                }
                Action::StateChange(_) => {}
                Action::PrinterAction(_) => {}
                Action::Command(_) => {}
            }
        }
    }
})

}

```

License

MIT License

Copyright (c) 2023 Lukas Heiligenbrunner

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.