bambu 0.3.1

Rust crate that provides a high-level API for interacting with the BambuLab 3D printers.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Print message.
use serde::{Deserialize, Serialize};
use smol_str::SmolStr;

/// Represents the printer status.
#[derive(Debug, Clone, PartialEq, Deserialize, Serialize)]
pub struct Print {
    pub bed_temper: Option<f64>,
    pub nozzle_temper: Option<f64>,
    pub command: SmolStr,
    pub msg: u64,
    pub sequence_id: SmolStr,
}