Remove faulty example

This commit is contained in:
zaubentrucker 2025-02-22 22:49:05 +01:00
parent b575c0bf7e
commit a181d2b0b1

View file

@ -3,12 +3,6 @@
/// - and the meaning of the reply can be parsed with `GcodeCommand::parse_reply(reply)`
///
/// The intended use is though the `Printer::send_gcode()` function.
/// Example:
/// ```rust
/// let mut printer = Printer::connect(DEFAULT_TTY).await.unwrap();
/// let command = Box::new(G0Command::new(true, true, true));
/// let reply: GcodeReply = printer.send_gcode(command).await.unwrap();
/// ```
mod g0;
mod g28;
mod g90;